Refactor #3965 - Update BaseComponent & DataTable

This commit is contained in:
Tuğçe Küçükoğlu 2023-06-08 14:26:48 +03:00
parent 57b6f2c63a
commit 6c39522495
11 changed files with 78 additions and 76 deletions

View file

@ -11,6 +11,7 @@ import { DomHandler, ObjectUtils } from 'primevue/utils';
export default {
name: 'FooterCell',
hostName: 'DataTable',
extends: BaseComponent,
props: {
column: {
@ -86,7 +87,7 @@ export default {
},
computed: {
containerClass() {
return [this.columnProp('footerClass'), this.columnProp('class'), this.cxo('footerCell')];
return [this.columnProp('footerClass'), this.columnProp('class'), this.cx('footerCell')];
},
containerStyle() {
let bodyStyle = this.columnProp('footerStyle');