mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
18 lines
319 B
Vue
Executable file
18 lines
319 B
Vue
Executable file
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
|
|
export default {
|
|
name: 'Row',
|
|
extends: BaseComponent,
|
|
inject: ['$rows'],
|
|
mounted() {
|
|
this.$rows?.add(this.$);
|
|
},
|
|
unmounted() {
|
|
this.$rows?.delete(this.$);
|
|
},
|
|
render() {
|
|
return null;
|
|
}
|
|
};
|
|
</script>
|