mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-04 23:59:20 +09:00
13 lines
289 B
TypeScript
13 lines
289 B
TypeScript
|
import DriveWindow from '../components/drive-window.vue';
|
||
|
|
||
|
export function selectDriveFile($root: any, multiple) {
|
||
|
return new Promise((res, rej) => {
|
||
|
const w = $root.new(DriveWindow, {
|
||
|
multiple
|
||
|
});
|
||
|
w.$once('selected', files => {
|
||
|
res(multiple ? files : files[0]);
|
||
|
});
|
||
|
});
|
||
|
}
|