mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +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 BaseColumnGroup from './BaseColumnGroup.vue';
|
|||
export default {
|
||||
name: 'ColumnGroup',
|
||||
extends: BaseColumnGroup,
|
||||
inject: ['$columnGroups'],
|
||||
mounted() {
|
||||
this.$columnGroups?.add(this.$);
|
||||
},
|
||||
unmounted() {
|
||||
this.$columnGroups?.delete(this.$);
|
||||
},
|
||||
render() {
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue