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)
}
Source:stackexchange.com