mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #5643 - Reimplement: Accordion
This commit is contained in:
parent
6cbb5e0993
commit
10f530f7b1
30 changed files with 1049 additions and 243 deletions
|
@ -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.._
|
||||
*
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue