-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
78 lines (66 loc) · 1.18 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<template>
<Transition name="fade">
<div class="loading" v-if="show_loading">
<Loading />
</div>
</Transition>
<Page />
</template>
<script setup>
import Page from './pages/start.vue'
import Loading from './pages/loading.vue'
import {ref} from 'vue'
const show_loading = ref(true)
onMounted(() => {
setTimeout(() => {
show_loading.value = false;
}, 500)
})
useHead({
charset: 'utf-16',
viewport: 'width=500, initial-scale=1',
title: 'Kiramei Official Site',
htmlAttrs: {
lang: 'jp'
},
meta: [{
charset: 'utf-8'
},
{
name: 'viewport',
content: 'width=device-width, initial-scale=1'
},
{
hid: 'description',
name: 'description',
content: `This is Kiramei's official site. Activities are posted here`
}
],
link: [{
rel: 'icon',
type: 'image/x-icon',
href: 'https://kiramei.cn/former/favicon.ico'
}]
})
</script>
<style>
* {
user-select: none;
}
img {
-webkit-user-drag: none;
}
.loading{
position:absolute;
z-index: 9999;
}
.fade-enter-active, .fade-leave-active {
transition: opacity .5s;
}
.fade-enter, .fade-leave-to {
opacity: 0;
}
.fade-enter-to, .fade-leave {
opacity: 1;
}
</style>