- scheda prodotto migliorata

- aggiornamento filtri
This commit is contained in:
Surya Paolo
2025-04-24 01:03:20 +02:00
parent fc015404a6
commit 8d6c53803e
18 changed files with 420 additions and 152 deletions

View File

@@ -37,6 +37,10 @@ export default defineComponent({
const draftValue = ref(props.modelValue)
const editing = ref(false)
watch(toRef(props, 'modelValue'), (newVal) => {
draftValue.value = newVal;
})
function copytoclip() {
tools.copyStringToClipboard($q, draftValue.value.toString(), true)
}