mirror of
https://gitcode.com/gh_mirrors/vue/vue-vben-admin
synced 2025-12-30 05:12:24 +00:00
fix(BasicTable): ColumnSettings.vue columnOptions typeof lost (#3941)
This commit is contained in:
@@ -540,13 +540,13 @@
|
||||
label:
|
||||
typeof col.title === 'string'
|
||||
? col.title
|
||||
: col.customTitle === 'string'
|
||||
: typeof col.customTitle === 'string'
|
||||
? col.customTitle
|
||||
: '',
|
||||
value:
|
||||
typeof col.dataIndex === 'string'
|
||||
? col.dataIndex
|
||||
: col.title === 'string'
|
||||
: typeof col.title === 'string'
|
||||
? col.title
|
||||
: '',
|
||||
column: {
|
||||
|
||||
Reference in New Issue
Block a user