-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.vue
56 lines (51 loc) · 1.28 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
<script setup lang="ts">
import siteConfig from '~/site.config'
const route = useRoute()
const pageMeta = computed(() => {
const baseURL = import.meta.env.VITE_BASE_URL
const url = `${baseURL}${route.path}`
const title = route.meta.title as string || siteConfig.title
const description = route.meta.excerpt as string || route.meta.title as string || siteConfig.description
const image = route.meta.metaImage as string || `${import.meta.env.VITE_BASE_URL}/${siteConfig.defaultMetaImage}`
return {
url,
title,
description,
image,
}
})
useServerHead({
title: computed(() => pageMeta.value.title).value,
meta: [
{
name: 'description',
content: computed(() => pageMeta.value.description).value,
},
{
name: 'og:title',
content: computed(() => pageMeta.value.title).value,
},
{
name: 'og:url',
content: computed(() => pageMeta.value.url).value,
},
{
name: 'og:description',
content: computed(() => pageMeta.value.description).value,
},
{
name: 'og:image',
content: computed(() => pageMeta.value.image).value,
},
],
link: [
{
rel: 'canonical',
href: computed(() => pageMeta.value.url).value,
},
],
})
</script>
<template>
<RouterView />
</template>