upgrade to quasar v2 and vue3 initial

This commit is contained in:
sadnub
2021-05-13 18:09:17 -04:00
parent aa5608f7e8
commit 8118eef300
89 changed files with 4628 additions and 15791 deletions

View File

@@ -5,7 +5,7 @@
Edit {{ task.name }}
<q-space />
<q-btn dense flat icon="close" v-close-popup>
<q-tooltip content-class="bg-white text-primary">Close</q-tooltip>
<q-tooltip class="bg-white text-primary">Close</q-tooltip>
</q-btn>
</q-bar>
<q-form @submit="submit">
@@ -23,7 +23,12 @@
@input="setScriptDefaults"
>
<template v-slot:option="scope">
<q-item v-if="!scope.opt.category" v-bind="scope.itemProps" v-on="scope.itemEvents" class="q-pl-lg">
<q-item
v-if="!scope.opt.category"
v-bind="scope.itemProps"
v-on="scope.itemProps.itemEvents"
class="q-pl-lg"
>
<q-item-section>
<q-item-label v-html="scope.opt.label"></q-item-label>
</q-item-section>
@@ -124,6 +129,7 @@ import { mapGetters } from "vuex";
export default {
name: "EditAutomatedTask",
emits: ["hide", "ok", "cancel"],
mixins: [mixins],
props: {
task: !Object,