()
| 54 | } |
| 55 | |
| 56 | export async function useDownloadFileDialog() { |
| 57 | return ( |
| 58 | (await useMountComponent().mount<DownloadFileConfigItem>(DownloadFileDialogVue)) || undefined |
| 59 | ); |
| 60 | } |
| 61 | |
| 62 | export async function useUploadFileDialog() { |
| 63 | return (await useMountComponent().mount<string>(UploadFileDialogVue)) || ""; |
nothing calls this directly
no test coverage detected