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
42 lines (38 loc) • 1.04 kB
JavaScript
import BaseComponent from '@primevue/core/basecomponent';
import ColumnGroupStyle from 'primevue/columngroup/style';
var script$1 = {
name: 'BaseColumnGroup',
"extends": BaseComponent,
props: {
type: {
type: String,
"default": null
}
},
style: ColumnGroupStyle,
provide: function provide() {
return {
$pcColumnGroup: this,
$parentInstance: this
};
}
};
var script = {
name: 'ColumnGroup',
"extends": script$1,
inheritAttrs: false,
inject: ['$columnGroups'],
mounted: function mounted() {
var _this$$columnGroups;
(_this$$columnGroups = this.$columnGroups) === null || _this$$columnGroups === void 0 || _this$$columnGroups.add(this.$);
},
unmounted: function unmounted() {
var _this$$columnGroups2;
(_this$$columnGroups2 = this.$columnGroups) === null || _this$$columnGroups2 === void 0 || _this$$columnGroups2["delete"](this.$);
},
render: function render() {
return null;
}
};
export { script as default };
//# sourceMappingURL=index.mjs.map