vue nextTick

// Import Vue from the 'vue' package
import Vue from 'vue';

// Create a new Vue instance
const vm = new Vue({
  // Specify the target HTML element to mount the Vue instance
  el: '#app',

  // Data object with properties to be used in the template
  data: {
    message: 'Hello Vue!',
  },

  // Lifecycle hook: mounted
  mounted() {
    // Use the $nextTick method to ensure the DOM has been updated
    this.$nextTick(function () {
      // Code to be executed after the DOM has been updated
      console.log('DOM is updated');
    });
  },
});