-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.vue
31 lines (27 loc) · 1018 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
<script setup lang="ts">
useHead({
title: '',
titleTemplate: (titleChunk) => {
return titleChunk ? 'Benotes - ' + titleChunk : 'Benotes';
},
script:[{ src :'/piwik.js', body: true}]
})
</script>
<template>
<Head>
<Link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<Link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<Link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<Link rel="icon" type="image/x-icon" href="/favicon.ico" />
<Meta name="description" content="Benotes. Your new open-source bookmark and notes companion" />
<Meta name="keywords" content="Benotes, Boomarks, Notes, Posts, open-source, Laravel, GitHub, Lumen, Vue, self-hosted"/>
<Meta charset="utf-8"/>
</Head>
<Body>
<div>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</Body>
</template>