We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5885621 commit 29a1db3Copy full SHA for 29a1db3
apps/web/app/pages/jobboard.vue
@@ -1,5 +1,6 @@
1
<script setup lang="ts">
2
import { useFetch, useHead } from '#imports'
3
+import { useLocaleCurrent } from '~/composables/useLocaleCurrent'
4
import type { JobInfo } from '@vuejs-jp/model'
5
import { conferenceTitle, linkUrl, ogJobboardDescription } from '~/utils/constants'
6
import { generalOg, twitterOg } from '~/utils/og.constants'
@@ -12,6 +13,8 @@ if (error.value) {
12
13
}
14
const { allJobs } = data.value as Jobs
15
16
+const { path: localePath } = useLocaleCurrent()
17
+
18
useHead({
19
titleTemplate: (titleChunk) => `ジョブボード | ${conferenceTitle}`,
20
meta: [
0 commit comments