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

31 lines (25 loc) 603 B
import BaseComponent from 'primevue/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 { $parentInstance: this }; } }; var script = { name: 'StepperPanel', "extends": script$1 }; function render(_ctx, _cache, $props, $setup, $data, $options) { return renderSlot(_ctx.$slots, "default"); } script.render = render; export { script as default };