diff --git a/packages/ui/src/components/Form/Input/BasicInputFile.vue b/packages/ui/src/components/Form/Input/BasicInputFile.vue index 6ca465dae..8688cf170 100644 --- a/packages/ui/src/components/Form/Input/BasicInputFile.vue +++ b/packages/ui/src/components/Form/Input/BasicInputFile.vue @@ -2,7 +2,10 @@ import { useDebounce } from '@vueuse/core' import { ref } from 'vue' -defineProps<{ +const props = defineProps<{ + class?: string | string[] | null + isDraggingClasses?: string | string[] | null + isNotDraggingClasses?: string | string[] | null accept?: string multiple?: boolean }>() @@ -28,6 +31,12 @@ function handleFileChange(e: Event) {