vue的ref,mounted和this.$nextTick
参考:
传送门(ref)
传送门 传送门(mounted)
传送门 传送门(this.nextTick)
ref:
// ref 需要在dom渲染完成后才会有,这是不消耗性能获取dom节点
<h1 ref='insideDomRef'>子组件</h1>
<script>
this.$refs.insideDomRef
mounted:
// mounted 的使用是网页加载dom完了的时候调用 methods里的函数,一般配合
this.$nextTick(()=>{
this.get();
})使用
this.$nextTick:
this.$nextTick异步执行操作dom节点,就是稍微晚一点执行里面的方法