[Vuejs]-How to remove component and its slot in Vue.js

0๐Ÿ‘

โœ…

I will suggest you to follow this video laracasts for a better code.

To delete your tab and content, you will need to do:

 deleteTab: function(tab){
  tab.isActive=false;
  index = this.tabs.indexOf(tab);
  if (index > -1) {
            this.tabs.splice(index, 1);
  }
    console.log(tab)
}

check fiddle

Leave a comment