-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
26 lines (24 loc) · 802 Bytes
/
app.vue
File metadata and controls
26 lines (24 loc) · 802 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
<template>
<div id="top">
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>
<script setup>
const title = ref("Sunbreak Hunting Attributes Calculator");
const description = ref("A fan-made tool to calculate the hunting attributes for MHR:Sunbreak.");
const keywords = ref("Monster Hunter, Monster Hunter Rise, Sunbreak, MHR, MHRS, MHR:S, 魔物獵人, 魔物獵人崛起, 魔物獵人崛起:破曉,モンスターハンターライズ, モンスターハンターライズ:サンブレイク, モンハン, モンハンライズ");
useHead({
title,
meta: [{
name: "description",
content: description
}, {
name: "keywords",
content: keywords
}],
viewport: "width=device-width, initial-scale=1, maximum-scale=1",
charset: "utf-8",
});
</script>