[Vuejs]-Vue determine if component has mounted

0👍

Found that _isMounted is getting set by Vue.

0👍

you can use it to search for your component if it mounted

this.$options.components[findComponentName]

or using v-ref like this one <comp v-ref:comp-name></comp>

and you can use it from the $refs object if(this.$refs.compName)

Leave a comment