vue中的this.$nextTick().then()
Posted web半晨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中的this.$nextTick().then()相关的知识,希望对你有一定的参考价值。
使用this.$nextTick().then()可以获取全最新的DOM。
this.$nextTick().then((vm) => {
vm.$refs[this.currentView].getData(data.houseId);
});
以上是关于vue中的this.$nextTick().then()的主要内容,如果未能解决你的问题,请参考以下文章
VUE this.$nextTick()异步刷新页面通俗用法