-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
47 lines (43 loc) · 894 Bytes
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<script setup>
useHead({
title: 'OPENQR | Free online QR Code reader from image file',
link: [
{
rel: 'icon', type: 'image/icon', href: '/favicon.ico',
},
{
rel: 'manifest', href: '/manifest.json',
},
],
meta: [
{
name: 'description', content: 'Free online QR Code scanner from images (QR scanner, QR Code reader from image online, QR Code scanner online, how to scan a qr code from image), ค้นหา QR Code จากรูป ฟรี, เปิด QR Code ฟรี',
},
],
script: [
{
src: '/install-sw.js', async: true, defer: true,
},
],
})
</script>
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<style>
html, body , #__nuxt{
height: 100vh;
margin: 0;
padding: 0;
}
html.dark {
background: #222;
color: white;
}
.cropper {
height: 600px;
background: #DDD;
}
</style>