-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
38 lines (32 loc) · 770 Bytes
/
app.vue
File metadata and controls
38 lines (32 loc) · 770 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
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
<UNotifications />
</template>
<script setup lang="ts">
const colorMode = useColorMode();
const color = computed(() =>
colorMode.value === "dark" ? "#111827" : "white"
);
useHead({
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ key: "theme-color", name: "theme-color", content: color },
],
link: [{ rel: "icon", href: "/favicon.ico" }],
htmlAttrs: {
lang: "en",
},
});
const title = "Nuxt & Tauri Starter";
const description =
"A starter template for building cross-platform desktop applications with Nuxt and Tauri.";
useSeoMeta({
title,
description,
ogTitle: title,
ogDescription: description,
});
</script>