Add Function to Column prop field types
To match the Typescript types added in #1078 and not trigger Vue's "Invalid prop" warnings.pull/2147/head
parent
18a78bb82c
commit
77dfce1186
|
@ -7,7 +7,7 @@ export default {
|
|||
default: null
|
||||
},
|
||||
field: {
|
||||
type: String,
|
||||
type: [String, Function],
|
||||
default: null
|
||||
},
|
||||
sortField: {
|
||||
|
@ -15,7 +15,7 @@ export default {
|
|||
default: null
|
||||
},
|
||||
filterField: {
|
||||
type: String,
|
||||
type: [String, Function],
|
||||
default: null
|
||||
},
|
||||
dataType: {
|
||||
|
|
Loading…
Reference in New Issue