-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.vue
66 lines (58 loc) · 2.31 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<script setup lang="ts">
import { TooltipProvider } from 'radix-vue'
import { basePath } from './lib/url'
const { data: currentEvent, suspense: suspenseCurrentEvent }
= useCurrentEventQuery()
onServerPrefetch(async () => {
// https://github.com/TanStack/query/discussions/5688#discussioncomment-6652179
await suspenseCurrentEvent().catch(() => {})
})
const description = computed(
() =>
(currentEvent.value
? `${
currentEvent.value.title
}Game³は${currentEvent.value.date.toLocaleDateString('ja-JP', {
timeZone: 'Asia/Tokyo',
})}に開催予定です。`
: '')
+ 'Game³(ゲームキューブ)とは、クリエイター同士の交流を目的としたゲーム展示イベントです。ターム制の採用や懇親会など、ほか展示イベントよりも交流を重視したプログラムが特徴です。主に関東圏の同人ゲーム制作者・サークル様に数多くご参加頂いています。本イベントは「すべてのゲームクリエイターへ。」をコンセプトに、学生などの「はじめての出展」を応援しています。「ゲームを作ったけど人に見せる機会がない」「プレイヤーから直接フィードバックを受けたい」などでお困りの方が、まず作品を公開してみようと思える場を目指しています。',
)
const route = useRoute()
const ogImageUrl = computed(() => currentEvent.value
? useEventImageUrl(currentEvent.value?.slug, true)
: useDefaultOgpImageUrl(true))
useSeoMeta({
title: 'トップページ',
ogTitle: 'トップページ',
titleTemplate: title => `${title} | ゲーム制作者交流イベントGame³`,
description: () => description.value,
ogDescription: () => description.value,
twitterDescription: () => description.value,
twitterCard: 'summary_large_image',
ogImage: () => ogImageUrl.value,
twitterImage: () => ogImageUrl.value,
ogUrl: () => basePath + route.fullPath,
})
useHead({
htmlAttrs: {
lang: 'ja',
},
link: [
{
rel: 'icon',
type: 'image/svg+xml',
href: '/favicon.svg',
},
],
})
</script>
<template>
<div class="body">
<TooltipProvider :delay-duration="500">
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</TooltipProvider>
</div>
</template>