x1nfly
5/14/2019 - 1:46 AM

刷新子组件

<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>