useFileDialog ​
Open file dialog with ease.
Demo ​
Usage ​
ts
import { useFileDialog } from '@vueuse/core'
const { files, open, reset, onCancel, onChange } = useFileDialog({
accept: 'image/*', // Set to accept only image files
directory: true, // Select directories instead of files if set true
})
onChange((files) => {
/** do something with files */
})
onCancel(() => {
/** do something on cancel */
})
vue
<template>
<button type="button" @click="open">
Choose file
</button>
</template>
Type Declarations ​
Show Type Declarations
typescript
export interface UseFileDialogOptions extends ConfigurableDocument {
/**
* @default true
*/
multiple?: boolean
/**
* @default '*'
*/
accept?: string
/**
* Select the input source for the capture file.
* @see [HTMLInputElement Capture](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/capture)
*/
capture?: string
/**
* Reset when open file dialog.
* @default false
*/
reset?: boolean
/**
* Select directories instead of files.
* @see [HTMLInputElement webkitdirectory](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory)
* @default false
*/
directory?: boolean
}
export interface UseFileDialogReturn {
files: Ref<FileList | null>
open: (localOptions?: Partial<UseFileDialogOptions>) => void
reset: () => void
onChange: EventHookOn<FileList | null>
onCancel: EventHookOn
}
/**
* Open file dialog with ease.
*
* @see https://vueuse.org/useFileDialog
* @param options
*/
export declare function useFileDialog(
options?: UseFileDialogOptions,
): UseFileDialogReturn
Source ​
Contributors ​
Anthony Fu
Anthony Fu
Andrey Yolkin
jinkaiqin
Doctorwu
huiliangShen
Sandra Rodgers
Damian GÅ‚owala
zaqvil
丶远方
1SZX1
ZHAO Jinxiang
Max
Robert Soriano
Changelog ​
v12.0.0-beta.1
on 11/21/2024v11.1.0
on 9/16/2024v10.10.0
on 5/27/2024v10.7.0
on 12/5/2023v10.6.0
on 11/9/2023v10.2.0
on 6/16/2023v10.0.0-beta.1
on 3/23/2023v9.2.0
on 9/5/2022