答案 0 :(得分:4)
我相信在调用el
挂钩时确实会挂载mounted
。 nextTick
的实际用途描述为here。它主要用于在代码中更改影响DOM的内容后立即需要直接DOM访问(不建议使用btw)。检查此代码:
new Vue({
el: '#app',
data: {
text: 'one'
},
components: {
'child' : {
template: `<p>{{ text }}</p>`,
props: ['text']
}
},
mounted: function() {
console.log(document.querySelector('p').textContent); // 'one'
this.text = 'two'; // assign new value
console.log('after text has changed: ');
console.log(document.querySelector('p').textContent); // still 'one'
this.$nextTick(function() {
console.log('nextTick: ', document.querySelector('p').textContent); // now 'two' after 'nextTick'
})
}
});
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="app">
<child :text="text"></child>
</div>
所以,我认为迁移文档在这种情况下会产生误导。