-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
40 lines (39 loc) · 969 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
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<script setup lang="ts">
useHead({
title: 'Profile',
meta: [
{
name: 'description',
content: 'Profile page',
},
],
link: [
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css2?family=Paytone+One&display=swap",
},
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&family=Paytone+One&display=swap",
},
{
rel:"stylesheet",
hre:"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css",
integrity:"sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==",
crossorigin:"anonymous",
referrerpolicy:"no-referrer"
}
],
// script:[
// {
// src: "https://kit.fontawesome.com/a076d05399.js",
// crossorigin: "anonymous",
// }
// ]
})
</script>