标签:ref 一个 .data code 过程 获取 console res timeout
<div ref="wrapper">
Vue.js 提供了我们一个获取 DOM 对象的接口—— vm.$refs。在这里,我们通过了 this.$refs.wrapper访问到了这个 DOM 对象,并且我们在 mounted 这个钩子函数里,this.$nextTick 的回调函数中初始化
因为 Vue 是数据驱动的, Vue 数据发生变化(this.data = res.data)到页面重新渲染是一个异步的过程,我们的初始化时机是要在 DOM 重新渲染后,所以这里用到了 this.$nextTick,当然替换成 setTimeout(fn, 20) 也是可以的。
this.$nextTick(() => { console.log(this.$refs.wrapper) this.$refs.wrapper.style.color=‘red‘ })
标签:ref 一个 .data code 过程 获取 console res timeout
原文地址:https://www.cnblogs.com/model-zachary/p/9042965.html