Files
dancefinder-app/pages/origins.vue
T

15 lines
276 B
Vue
Raw Normal View History

<template>
<origins />
</template>
2024-02-02 18:55:45 +01:00
<script setup lang='ts'>
import { useHead } from '@unhead/vue'
2024-02-05 16:48:02 +01:00
import { useI18n } from '#i18n'
import Origins from '../components/pages/origins/origin-page.vue'
2024-02-05 16:48:02 +01:00
const { t } = useI18n()
2024-02-02 18:55:45 +01:00
useHead({
2024-02-05 16:48:02 +01:00
title: t('origins.title'),
2024-02-02 18:55:45 +01:00
})
</script>