UNPKG

primevue

Version:

PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc

34 lines (28 loc) 691 B
import BaseComponent from 'primevue/basecomponent'; import TabPanelStyle from 'primevue/tabpanel/style'; import { renderSlot } from 'vue'; var script$1 = { name: 'BaseTabPanel', "extends": BaseComponent, props: { header: null, headerStyle: null, headerClass: null, headerProps: null, headerActionProps: null, contentStyle: null, contentClass: null, contentProps: null, disabled: Boolean }, style: TabPanelStyle }; var script = { name: 'TabPanel', "extends": script$1 }; function render(_ctx, _cache, $props, $setup, $data, $options) { return renderSlot(_ctx.$slots, "default"); } script.render = render; export { script as default };