-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
38 lines (37 loc) · 889 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
<script setup lang="ts">
useHead({
title: '猿奋工具箱',
titleTemplate: '%s - 猿奋工具箱',
meta: [{ charset: 'utf-8' }, { name: 'viewport', content: 'width=device-width, initial-scale=1' }],
link: [
{
rel: 'apple-touch-icon',
sizes: '180x180',
href: '/img/favicon/apple-touch-icon.png',
},
{
rel: 'icon',
type: 'image/image/png',
sizes: '32x32',
href: '/img/favicon/favicon-32x32.png',
},
{
rel: 'icon',
type: 'image/image/png',
sizes: '16x16',
href: '/img/favicon/favicon-16x16.png',
},
{ rel: 'manifest', href: '/img/favicon/site.webmanifest' },
],
script: [{
'defer': true,
'data-domain': 'tools.yuanfen.net',
'src': 'https://plausible.yuanfen.net:5443/js/script.js',
}],
})
</script>
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>