vue.js中 this.$nextTick()的使用

2021-04-20 19:27

阅读:492

标签:stc   test   data   获取   tar   efs   methods   export   改变   

this.$nextTick这个方法作用是当数据被修改后使用这个方法会回调获取更新后的dom再渲染出来

template>
    

 



methods:{
    testClick() {
        this.content = ‘改变了的值‘
        this.$nextTick(() => {
            // dom元素更新后执行,因此这里能正确打印更改之后的值
            console.log(that.$refs.tar.innerText) // 改变了的值
        })
    }
}

  

vue.js中 this.$nextTick()的使用

标签:stc   test   data   获取   tar   efs   methods   export   改变   

原文地址:https://www.cnblogs.com/shun1015/p/12257900.html

上一篇:Log4j整合Flume

下一篇:css点名


评论


亲,登录后才可以留言!