vue 销毁组件、重置组件方式
1.使用v-if在组件上定义v-if一个布尔变量 1.变量改为false 2.变量改为trueimport dialog from '@compintent/dialog'components: {dialog}this.$destroy('dialog');// get~ 销毁组件destroyElement() {this.$destroy(true);this.$el.parentNod
·
1.使用v-if
在组件上定义v-if一个布尔变量
1.变量改为false
2.变量改为true
import dialog from '@compintent/dialog'
components: {dialog}
this.$destroy('dialog');
// get~ 销毁组件
destroyElement() {
this.$destroy(true);
this.$el.parentNode.removeChild(this.$el);
},
更多推荐
已为社区贡献2条内容
所有评论(0)