Fixed #4646 - Add custom wrapper support for helper components

This commit is contained in:
mertsincan 2023-12-21 23:41:41 +00:00
parent 7618f8ba7a
commit f16bd6ab2e
14 changed files with 196 additions and 157 deletions

View file

@ -4,6 +4,13 @@ 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;
}