mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #4646 - Add custom wrapper support for helper components
This commit is contained in:
parent
7618f8ba7a
commit
f16bd6ab2e
14 changed files with 196 additions and 157 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue