Reverted #4646 - For TabView and Accordion

This commit is contained in:
mertsincan 2023-12-22 11:17:54 +00:00
parent 7959929c16
commit 40f231b1f5
5 changed files with 39 additions and 37 deletions

View file

@ -7,13 +7,6 @@ import BaseTabPanel from './BaseTabPanel.vue';
export default {
name: 'TabPanel',
extends: BaseTabPanel,
inject: ['$tabPanels'],
mounted() {
this.$tabPanels?.add(this.$);
},
unmounted() {
this.$tabPanels?.delete(this.$);
}
extends: BaseTabPanel
};
</script>