diff --git a/src/components/column/Column.vue b/src/components/column/Column.vue index 30a5b4271..788dd77dc 100644 --- a/src/components/column/Column.vue +++ b/src/components/column/Column.vue @@ -24,6 +24,30 @@ export default { footer: { type: null, default: null + }, + headerStyle: { + type: null, + default: null + }, + headerClass: { + type: String, + default: null + }, + bodyStyle: { + type: null, + default: null + }, + bodyClass: { + type: String, + default: null + }, + footerStyle: { + type: null, + default: null + }, + footerClass: { + type: String, + default: null } }, render() { diff --git a/src/components/datatable/DataTable.vue b/src/components/datatable/DataTable.vue index 318f76a63..5f29860ec 100644 --- a/src/components/datatable/DataTable.vue +++ b/src/components/datatable/DataTable.vue @@ -1,19 +1,24 @@