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
29 lines (23 loc) • 893 B
JavaScript
this.primevue = this.primevue || {};
this.primevue.row = (function (BaseComponent) {
'use strict';
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var BaseComponent__default = /*#__PURE__*/_interopDefaultLegacy(BaseComponent);
var script = {
name: 'Row',
"extends": BaseComponent__default["default"],
inject: ['$rows'],
mounted: function mounted() {
var _this$$rows;
(_this$$rows = this.$rows) === null || _this$$rows === void 0 || _this$$rows.add(this.$);
},
unmounted: function unmounted() {
var _this$$rows2;
(_this$$rows2 = this.$rows) === null || _this$$rows2 === void 0 || _this$$rows2["delete"](this.$);
},
render: function render() {
return null;
}
};
return script;
})(primevue.basecomponent);