例子
<template> <div id="app"> <!-- <hello-world />--> <div ref="msg">{{ msg }}</div> <button @click="change">change</button> </div> </template> <script> // import HelloWorld from ‘./components/HelloWorld/index‘ export default { name: ‘App‘, components: { // HelloWorld }, data() { return { msg: ‘hello world‘, }; }, methods: { change() { this.$nextTick(() => { console.log(‘nextTick:‘,this.$refs.msg.innerText); });this.$nextTick().then(() => { console.log(‘nextTick with promise:‘,this.$refs.msg.innerText); }); this.msg = ‘hello vue‘; }, } } </script>
原文:https://www.cnblogs.com/ltog/p/14442062.html