Files
dancefinder-app/pages/origins.vue
T

15 lines
292 B
Vue
Raw Normal View History

2019-03-02 16:26:28 +01:00
<template>
<origins />
</template>
2024-02-02 18:55:45 +01:00
<script setup lang='ts'>
import { useHead } from '@unhead/vue'
import Origins from '../components/pages/origins/index.vue'
import { useTranslation } from '~/plugins/i18n'
2019-03-02 16:26:28 +01:00
2024-02-02 18:55:45 +01:00
const { t } = useTranslation()
useHead({
title: t('origins.title')
})
2019-03-02 16:26:28 +01:00
</script>