-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.vue
46 lines (44 loc) · 879 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
<script setup lang="ts">
import Toast from 'primevue/toast'
useHead({
title: 'Portfolio Report',
meta: [{ name: 'description', content: 'Portfolio Report' }],
link: [
{
rel: 'search',
type: 'application/opensearchdescription+xml',
href: '/opensearch.xml',
},
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{
rel: 'icon',
type: 'image/png',
sizes: '32x32',
href: '/favicon-32.png',
},
{
rel: 'icon',
type: 'image/png',
sizes: '180x180',
href: '/favicon-180.png',
},
{
rel: 'icon',
type: 'image/png',
sizes: '192x192',
href: '/favicon-192.png',
},
],
bodyAttrs: {
class: 'bg-gray-50 text-gray-600',
},
})
</script>
<template>
<div>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
<Toast />
</div>
</template>