this.$nextTick
this.msg = 'itcast'
// console.log(document.getElementById('myh').innerText); // 如果直接这样打印,打印出来的结果不是我们想要的itcast,而是hello,因为this.msg = ‘itcast’ 它是异步的 this.$nextTick(() => { console.log(document.getElementById('myh').innerText) })
this.$nextTick()将回调延迟到下次 DOM 更新循环之后执行。
https://www.cnblogs.com/mushitianya/p/10510912.html