22 lines
576 B
JavaScript
22 lines
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
|