我想訪問內<input>
元素已經被創建後的Vue:如何確定Vue何時完成更新DOM?
<li v-repeat="subtask: subtasks">
<input v-model="subtask.name" type="text">
</li>
然而,這個代碼不工作:
/* add a new item (that in turn will create a new DOM node) */
subtasks.push({
name: 'wash the dishes',
id: 'box-123'
});
/* ... Around now, Vue should get busy creating the new <li> ... */
/* Now the element should exist, but it doesn't */
console.log(document.getElementById('box-123'));
// --> null
但是,getElementById
電話回來空handed- - 此時節點不存在。
什麼時候可以確定Vue創建/更新了DOM?