fixed bug in IsoDateInput.vue (Props must be function for Object/Array)

This commit is contained in:
Tim Gröger 2021-01-29 21:59:06 +01:00
parent 284533742d
commit 6e406c9b2c
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ export default defineComponent({
}
},
rules: {
default: []
default: () => { return [] }
}
},
setup(props: Props, { emit }: { emit: any }) {