mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #4646 - Add custom wrapper support for helper components
This commit is contained in:
parent
7618f8ba7a
commit
f16bd6ab2e
14 changed files with 196 additions and 157 deletions
|
@ -7,6 +7,13 @@ import BaseAccordionTab from './BaseAccordionTab.vue';
|
|||
|
||||
export default {
|
||||
name: 'AccordionTab',
|
||||
extends: BaseAccordionTab
|
||||
extends: BaseAccordionTab,
|
||||
inject: ['$accordionTabs'],
|
||||
mounted() {
|
||||
this.$accordionTabs?.add(this.$);
|
||||
},
|
||||
unmounted() {
|
||||
this.$accordionTabs?.delete(this.$);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue