-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
40 lines (34 loc) · 844 Bytes
/
app.vue
File metadata and controls
40 lines (34 loc) · 844 Bytes
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
<script setup>
useHead({
title: 'Jim Wang 1',
meta: [
{ name: 'description', content: 'Jim Wangs portfolio 2' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'theme-color', content: '#1f1e33' },
{ property: 'og:title', content: 'Jim Wangs portfolio 3' },
{ property: 'og:description', content: 'Jim Wangs portfolio 4' },
{ property: 'og:type', content: 'website' },
{ property: 'og:url', content: '' },
{ property: 'og:image', content: '/meta/img.jpg' },
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/meta/fav2.png' },
],
})
</script>
<template>
<div>
<NuxtPage />
</div>
</template>
<style>
.page-enter-active,
.page-leave-active {
transition: all 0.4s;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
filter: blur(1rem);
}
</style>