We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68e5e77 commit 1fbc9ccCopy full SHA for 1fbc9cc
packages/coreui-vue/src/components/table/CTable.ts
@@ -117,7 +117,7 @@ const CTable = defineComponent({
117
* @since 4.5.0
118
*/
119
columns: {
120
- type: Array as PropType<Column[] | string[]>,
+ type: Array as PropType<(Column | string)[]>,
121
required: false,
122
},
123
/**
@@ -137,7 +137,7 @@ const CTable = defineComponent({
137
138
139
footer: {
140
- type: Array as PropType<FooterItem[] | string[]>,
+ type: Array as PropType<(FooterItem | string)[]>,
141
142
143
0 commit comments