Which lifecycle method of `Vue.js` corresponds to the following code?

Which lifecycle method of

Vue.js corresponds to the following code?

if (document.readyState == "completed") {
  // 
}
Mar.15,2021

mounted

clipboard.png


if (document.readyState == "completed") {
  // 
}

to say which method, it is mounted, but in fact, mounted does not necessarily render all the elements.
https://cn.vuejs.org/v2/api/-sharp.
quotes the official saying:
"

. "
el  vm.$el  root  mounted  vm.$el 

 mounted  vm.$nextTick  mounted:
    mounted: function () {
      this.$nextTick(function () {
        // Code that will run only after the
        // entire view has been rendered
      })
    }

"

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3a8b3-2c228.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3a8b3-2c228.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?