primevue-mirror/components/lib/tabpanel/TabPanel.vue

20 lines
332 B
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
<slot></slot>
</template>
<script>
2023-05-24 06:24:33 +00:00
import BaseTabPanel from './BaseTabPanel.vue';
2022-09-06 12:03:37 +00:00
export default {
name: 'TabPanel',
extends: BaseTabPanel,
inject: ['$tabPanels'],
mounted() {
this.$tabPanels?.add(this.$);
},
unmounted() {
this.$tabPanels?.delete(this.$);
}
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>