Refactor #3965 - For DataTable & Column & ColumnGroup & Row

This commit is contained in:
Tuğçe Küçükoğlu 2023-06-02 09:52:13 +03:00
parent ea9062ae3a
commit 2669fd5925
16 changed files with 1127 additions and 920 deletions

View file

@ -0,0 +1,19 @@
<script>
import BaseComponent from 'primevue/basecomponent';
export default {
name: 'BaseColumnGroup',
extends: BaseComponent,
props: {
type: {
type: String,
default: null
}
},
provide() {
return {
$parentInstance: this
};
}
};
</script>