mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 22:03:09 +02:00
19 lines
386 B
TypeScript
19 lines
386 B
TypeScript
import Dialog from '../views/components/dialog.vue';
|
|
|
|
export default function(opts) {
|
|
return new Promise<string>((res, rej) => {
|
|
const o = opts || {};
|
|
const d = new Dialog({
|
|
propsData: {
|
|
title: o.title,
|
|
text: o.text,
|
|
modal: o.modal,
|
|
buttons: o.actions
|
|
}
|
|
}).$mount();
|
|
d.$once('clicked', id => {
|
|
res(id);
|
|
});
|
|
document.body.appendChild(d.$el);
|
|
});
|
|
}
|