タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

Vue nextTickに関するtamoriinu_3のブックマーク (1)

  • Vue.nextTickのコードリーディング

    Vue.nextTickとは? callbackを延期し、DOMの更新サイクル後に実行します。DOM更新を待ち受けるために、いくつかのデータを変更した直後に使用してください。 VueはDOMを非同期に更新するため、「DOMを更新した後にその更新済みのDOMに対して何らかの処理をする」といったような場面でnextTickが役立ちます。 // single file component <template> <div>{{ message }}</div> </template> <script> export default { data() { return { message: 'default' } }, mounted() { this.message = 'hello'; console.log(this.$el.textContent); // default この時点ではまだD

    Vue.nextTickのコードリーディング
  • 1