其他分享
首页 > 其他分享> > vue 销毁组件、重置组件方式

vue 销毁组件、重置组件方式

作者:互联网

1.使用v-if

  在组件上定义v-if一个布尔变量

  1.变量改为false

  2.变量改为true

2.

import dialog from '@compintent/dialog'
components: {dialog}
this.$destroy('dialog');

 

3.

// get~ 销毁组件
destroyElement() {
  this.$destroy(true);
  this.$el.parentNode.removeChild(this.$el);
},

标签:el,vue,变量,重置,dialog,组件,destroy,true
来源: https://www.cnblogs.com/DeerLin/p/15170148.html