forked from PlexRipper/Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
28 lines (24 loc) · 752 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
<script setup lang="ts">
import { useNavigationStore } from "store/navigationStore";
import Background from '~/components/General/Background.vue'
import AppBar from "~/components/AppBar/AppBar.vue";
import { useHead } from "#imports";
const store = useNavigationStore();
await store.setup()
useHead({
title: 'PlexRipper Docs',
viewport: 'width=device-width, initial-scale=1, maximum-scale=1',
charset: 'utf-8',
meta: [{ name: 'description', content: 'Documentation website for the PlexRipper project' }],
link: [{ rel: 'icon', type: 'image/png', href: '/favicon.png' }],
})
</script>
<template>
<v-app class="glass-background">
<AppBar/>
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
<Background/>
</v-app>
</template>