baked-recipe-admin
Version:
Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.
22 lines (19 loc) • 576 B
JavaScript
import BaseComponent from '@primevue/core/basecomponent';
var script = {
name: 'Row',
"extends": BaseComponent,
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;
}
};
export { script as default };
//# sourceMappingURL=index.mjs.map