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

39 lines (33 loc) 889 B
import BaseComponent from '@primevue/core/basecomponent'; import FloatLabelStyle from 'primevue/floatlabel/style'; import { createElementBlock, openBlock, mergeProps, renderSlot } from 'vue'; var script$1 = { name: 'BaseFloatLabel', "extends": BaseComponent, props: { variant: { type: String, "default": 'over' } }, style: FloatLabelStyle, provide: function provide() { return { $pcFloatLabel: this, $parentInstance: this }; } }; var script = { name: 'FloatLabel', "extends": script$1, inheritAttrs: false }; function render(_ctx, _cache, $props, $setup, $data, $options) { return openBlock(), createElementBlock("span", mergeProps({ "class": _ctx.cx('root') }, _ctx.ptmi('root')), [renderSlot(_ctx.$slots, "default")], 16); } script.render = render; export { script as default }; //# sourceMappingURL=index.mjs.map