pricelist: Fixed wrong default value for modelValue
This commit is contained in:
parent
95867428a8
commit
8b6c400689
|
@ -42,7 +42,7 @@ export default defineComponent({
|
||||||
props: {
|
props: {
|
||||||
modelValue: {
|
modelValue: {
|
||||||
type: Object as PropType<Search>,
|
type: Object as PropType<Search>,
|
||||||
default: { value: '', key: undefined, label: '' },
|
default: () => ({ value: '', key: undefined, label: '' }),
|
||||||
},
|
},
|
||||||
keys: {
|
keys: {
|
||||||
type: Object as PropType<Array<Col>>,
|
type: Object as PropType<Array<Col>>,
|
||||||
|
|
Loading…
Reference in New Issue