- Continuazione del Catalogo

This commit is contained in:
Surya Paolo
2024-10-26 17:12:05 +02:00
parent 76b51f5b91
commit baa4188746
62 changed files with 1112 additions and 1697 deletions

View File

@@ -33,6 +33,11 @@ export default defineComponent({
required: false,
default: '',
},
imglogo: {
type: String,
required: false,
default: '',
},
read: {
type: Boolean,
required: false,
@@ -82,6 +87,7 @@ export default defineComponent({
...toRefs(state),
onDecode,
naviga,
globalStore,
}
},
})

View File

@@ -1,5 +1,5 @@
<template>
<div>
<div v-if="globalStore.finishLoading">
<div v-if="read">
<div class="stream">
<qr-stream @decode="onDecode" class="mb">
@@ -27,8 +27,9 @@
</div>
<div v-else>
<div class="q-ma-sm">
{{textlink}}<br>
{{link}}
{{ textlink }}<br />
{{ link }}<br />
Logo: {{imglogo}}<br />
</div>
<qrcode-vue
:width="250"
@@ -47,10 +48,10 @@
],
},
}"
:image="tools.getimglogo()"
:image="imglogo ? imglogo : tools.getimglogo()"
:cornersSquareOptions="{ type: 'dot', color: '#000000' }"
:cornersDotOptions="{ type: undefined, color: '#000000' }"
fileExt="png"
fileExt="png"
:download="true"
:value="link"
downloadButton="button_download"