Progress on tabletop UI design

This commit is contained in:
Stefan Zermatten
2023-01-15 01:17:00 +02:00
parent cd45008f38
commit 25e6b19b49
20 changed files with 700 additions and 290 deletions

View File

@@ -12,8 +12,8 @@
<v-btn
v-bind="$attrs"
:class="buttonClass"
v-on="on"
@click.stop
v-on="noClick ? {} : on"
@click="e => { if (!noClick) e.stopPropagation(); }"
>
<slot />
</v-btn>
@@ -87,6 +87,7 @@ export default {
type: Number,
default: undefined,
},
noClick: Boolean,
},
data(){return {
open: false,