<template>
<my-comp v-if="isActived"></my-comp>
</template>
<script>
export default {
components: { MyComp },
data() {
return {
isActived: true
}
},
created() {
this.isActived = false
this.$nextTick(() => { this.isActived = true })
}
}
</script>