zl程序教程

您现在的位置是:首页 >  前端

当前栏目

vue 销毁组件

Vue组件 销毁
2023-09-11 14:16:39 时间

销毁组件

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