-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.vue
49 lines (44 loc) · 853 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
48
49
<template>
<div class="app">
<v-app>
<NuxtLayout>
<NuxtLoadingIndicator />
<NuxtPage />
</NuxtLayout>
</v-app>
</div>
</template>
<script setup>
import { CDN_URL } from '@/constants';
import 'normalize.css';
useHead({
// titleTemplate: (titleChunck) => titleChunck ? `${titleChunck} | iShortV` : 'iShortV',
title: '我的学习经验分享',
link: [
{
rel: 'icon',
href: `${CDN_URL}/[email protected]`
}
],
meta: [{
}]
});
</script>
<style lang="scss">
@use '@/assets/style/scrollbar' as *;
html {
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: transparent;
overflow-y: hidden;
}
body {
font-family: $font-family;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
</style>