fix: Flatpickr types
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Dominik Pschenitschni 2022-11-05 17:15:14 +01:00
parent 442a14242c
commit da30009148
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 1 additions and 12 deletions

View File

@ -66,19 +66,8 @@ import {computed, onBeforeUnmount, onMounted, ref, toRefs, useAttrs, watch, watc
const props = defineProps({
modelValue: {
type: [String, Number, Date, Array] as PropType<DateOption | DateOption[]>,
type: [String, Number, Date, Array] as PropType<DateOption | DateOption[] | null>,
default: null,
required: true,
// validator(value) {
// return (
// value === null ||
// value instanceof Date ||
// typeof value === 'string' ||
// value instanceof String ||
// value instanceof Array ||
// typeof value === 'number'
// );
// }
},
// https://flatpickr.js.org/options/
config: {