- (Part 2 - Upgrade Components Quasar)

This commit is contained in:
Paolo Arena
2019-03-13 01:53:53 +01:00
parent 74ecc4f278
commit 67748ce94f
20 changed files with 570 additions and 526 deletions

View File

@@ -1,10 +1,15 @@
export async function askConfirm($q: any, mytitle, mytext, ok, cancel) {
try {
return await $q.dialog({
title: mytitle,
cancel: {
label: cancel
},
message: mytext,
ok: ok,
cancel: cancel
ok: {
label: ok,
push: true
},
title: mytitle
}).then((ris) => {
return true
// this.$q.notify('Agreed!')