-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.vue
35 lines (33 loc) · 823 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
<template>
<NuxtLayout>
<NuxtLoadingIndicator />
<NuxtPage />
</NuxtLayout>
</template>
<script setup>
const route = useRoute()
const title = ref('Zeno Junior')
useHead({
title,
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.png' }
],
meta: [
{ name: 'theme-color', content: '#1870ae' },
{ name: 'og:title', content: !route.meta.title ? title : `${route.meta.title} - ${title.value}` },
{ name: 'viewport', content: 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' }
]
})
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
#__nuxt {
height: 100%;
z-index: 2;
position: relative;
}
*::selection {
background: #fff;
color: #283441;
}
</style>