chore: update all deps (#1976)

This commit is contained in:
Anthony Fu 2023-04-12 14:35:35 +02:00 committed by GitHub
parent 3acf87d5b6
commit 189d358b2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 1730 additions and 2078 deletions

View file

@ -2,7 +2,7 @@
const emit = defineEmits<{
(event: 'close'): void
}>()
const { modelValue: visible } = defineModel<{
const { modelValue: visible } = defineModels<{
modelValue?: boolean
}>()

View file

@ -3,7 +3,7 @@ defineProps<{
label: string
hover?: boolean
}>()
const { modelValue } = defineModel<{
const { modelValue } = defineModels<{
modelValue?: boolean
}>()
</script>

View file

@ -14,7 +14,7 @@ const props = withDefaults(defineProps<Props>(), {
stencilSizePercentage: 0.9,
})
const { modelValue: file } = defineModel<{
const { modelValue: file } = defineModels<{
/** Images to be cropped */
modelValue: File | null
}>()

View file

@ -22,7 +22,7 @@ const emit = defineEmits<{
(event: 'error', code: number, message: string): void
}>()
const { modelValue: file } = defineModel<{
const { modelValue: file } = defineModels<{
modelValue: FileWithHandle | null
}>()

View file

@ -4,7 +4,7 @@ defineProps<{
value: any
hover?: boolean
}>()
const { modelValue } = defineModel<{
const { modelValue } = defineModels<{
modelValue: any
}>()
</script>

View file

@ -8,7 +8,7 @@ const { options, command } = defineProps<{
command?: boolean
}>()
const { modelValue } = defineModel<{
const { modelValue } = defineModels<{
modelValue: string
}>()