Remove NuxtImg for non asset files

This commit is contained in:
Julien Nahum
2024-01-10 16:17:47 +01:00
parent 158dba64dc
commit 9750406025
17 changed files with 23 additions and 24 deletions

View File

@@ -3,7 +3,7 @@
<h3 class="font-semibold text-xl">QR Code</h3>
<p>Scan the QR code to open the form (Right click to copy the image)</p>
<div class="flex items-center">
<NuxtImg v-if="QrUrl" :src="QrUrl" class="m-auto" />
<img v-if="QrUrl" :src="QrUrl" class="m-auto" />
</div>
</div>
</template>
@@ -18,7 +18,7 @@ export default {
},
data () {
return {
return {
QrUrl: null
}
},