mirror of
https://github.com/hotomoe/hotomoe
synced 2024-12-18 08:38:11 +09:00
19 lines
394 B
TypeScript
19 lines
394 B
TypeScript
import Chooser from '../views/components/drive-file-chooser.vue';
|
|
|
|
export default function(opts) {
|
|
return new Promise((res, rej) => {
|
|
const o = opts || {};
|
|
const w = new Chooser({
|
|
propsData: {
|
|
title: o.title,
|
|
multiple: o.multiple,
|
|
initFolder: o.currentFolder
|
|
}
|
|
}).$mount();
|
|
w.$once('selected', file => {
|
|
res(file);
|
|
});
|
|
document.body.appendChild(w.$el);
|
|
});
|
|
}
|