- generato lista libri, con possibilità di cambiare l'ordinamento dei libri o di cancellare libri.

This commit is contained in:
Surya Paolo
2025-04-01 18:36:45 +02:00
parent 61c1dc3d0d
commit 79d1c5fe1d
15 changed files with 507 additions and 302 deletions

View File

@@ -21,6 +21,11 @@ export default defineComponent({
type: String,
required: true,
},
showvalue: {
type: Boolean,
required: false,
default: false,
},
min: {
type: Number,
required: true,

View File

@@ -1,5 +1,5 @@
<template>
<q-badge color="primary"> {{ label }} <span v-if="modelValue">{{ modelValue }}</span> </q-badge>
<q-badge class="q-mx-sm" color="primary"> {{ label }} <span v-if="modelValue && showvalue"> ({{ modelValue }})</span> </q-badge>
<div class="q-pa-xs row no-wrap">
<q-btn
icon="fas fa-minus"