mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 05:16:54 +00:00
12 lines
363 B
TypeScript
12 lines
363 B
TypeScript
export function useFileDropToCreateRecords(_options: any) {
|
|
return {
|
|
isProcessing: readonly(ref(false)),
|
|
showFieldSelectDlg: ref(false),
|
|
pendingFiles: readonly(ref<any>([])),
|
|
attachmentFields: computed<any>(() => []),
|
|
handleFileDrop: (_files: any) => {},
|
|
onFieldSelected: (_field: any) => {},
|
|
onFieldSelectCancelled: () => {},
|
|
}
|
|
}
|