Vue中tab关闭功能

一.关闭tab:

 1.使用close事件

<template>
@close="closetab"

 2.定义方法

closetab(index){
  //根据index删除tab组中的tab
  this.$refs.tgroup.remove(index);
},

猜你喜欢

转载自blog.csdn.net/weixin_43837268/article/details/84782966