vue.js中 this.$nextTick()的使用
2021-04-20 19:27
标签:stc test data 获取 tar efs methods export 改变 this.$nextTick这个方法作用是当数据被修改后使用这个方法会回调获取更新后的dom再渲染出来 vue.js中 this.$nextTick()的使用 标签:stc test data 获取 tar efs methods export 改变 原文地址:https://www.cnblogs.com/shun1015/p/12257900.htmltemplate>
methods:{
testClick() {
this.content = ‘改变了的值‘
this.$nextTick(() => {
// dom元素更新后执行,因此这里能正确打印更改之后的值
console.log(that.$refs.tar.innerText) // 改变了的值
})
}
}
上一篇:Log4j整合Flume
下一篇:css点名
文章标题:vue.js中 this.$nextTick()的使用
文章链接:http://soscw.com/index.php/essay/77264.html