UNPKG

accessibleprimevue

Version:

Note: This is the forked version of the Primefaces/PrimeVue repository. Since V3 has reached its EOL this is use to fix identified accessibility bugs in the v3 version of primevue. PrimeVue is an open source UI library for Vue featuring a rich set of 80+

40 lines (34 loc) 819 B
import AccordionTabStyle from 'primevue/accordiontab/style'; import BaseComponent from 'primevue/basecomponent'; import { renderSlot } from 'vue'; var script$1 = { name: 'BaseAccordionTab', "extends": BaseComponent, props: { header: null, headerStyle: null, headerClass: null, headerProps: null, headerActionProps: null, contentStyle: null, contentClass: null, contentProps: null, disabled: Boolean }, style: AccordionTabStyle, provide: function provide() { return { $parentInstance: this }; } }; var script = { name: 'AccordionTab', "extends": script$1, inheritAttrs: false }; function render(_ctx, _cache, $props, $setup, $data, $options) { return renderSlot(_ctx.$slots, "default"); } script.render = render; export { script as default };