- Continuazione del Catalogo
This commit is contained in:
@@ -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,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user