2020-01-29 13:37:25 -06:00
|
|
|
export function selectDriveFile($root: any, multiple) {
|
|
|
|
return new Promise((res, rej) => {
|
2020-04-22 05:36:28 -05:00
|
|
|
import('../components/drive-window.vue').then(m => m.default).then(dialog => {
|
|
|
|
const w = $root.new(dialog, {
|
|
|
|
type: 'file',
|
|
|
|
multiple
|
|
|
|
});
|
|
|
|
w.$once('selected', files => {
|
|
|
|
res(multiple ? files : files[0]);
|
|
|
|
});
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|