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

36 lines (30 loc) 794 B
import BaseComponent from '@primevue/core/basecomponent'; import StepperPanelStyle from 'primevue/stepperpanel/style'; import { renderSlot } from 'vue'; var script$1 = { name: 'BaseStepperPanel', "extends": BaseComponent, props: { header: null }, style: StepperPanelStyle, provide: function provide() { return { $pcStepperPanel: this, $parentInstance: this }; } }; var script = { name: 'StepperPanel', "extends": script$1, mounted: function mounted() { console.warn('Deprecated since v4. Use the new structure of Stepper instead.'); } }; function render(_ctx, _cache, $props, $setup, $data, $options) { return renderSlot(_ctx.$slots, "default"); } script.render = render; export { script as default }; //# sourceMappingURL=index.mjs.map