Fixed #5643 - Reimplement: Accordion

This commit is contained in:
mertsincan 2024-04-24 23:42:28 +01:00
parent 6cbb5e0993
commit 10f530f7b1
30 changed files with 1049 additions and 243 deletions

View file

@ -1,4 +1,5 @@
/**
* @deprecated since v4. Use the new structure of Accordion instead.
*
* AccordionTab is a helper component for Accordion.
*
@ -218,7 +219,9 @@ export interface AccordionTabSlots {
export interface AccordionTabEmits {}
/**
* **PrimeVue - Accordion**
* @deprecated since v4. Use the new structure of Accordion instead.
*
* **PrimeVue - AccordionTab**
*
* _AccordionTab is a helper component for Accordion.._
*

View file

@ -8,6 +8,9 @@ import BaseAccordionTab from './BaseAccordionTab.vue';
export default {
name: 'AccordionTab',
extends: BaseAccordionTab,
inheritAttrs: false
inheritAttrs: false,
mounted() {
console.warn('Deprecated since v4. Use the new structure of Accordion instead.');
}
};
</script>