Files
dancefinder-app/pages/origins.vue
T

22 lines
333 B
Vue
Raw Normal View History

<template>
<origins />
</template>
<script>
2020-01-25 14:59:14 +01:00
import Origins from '../components/pages/origins'
import { useTranslation } from '../plugins/i18n'
2020-01-25 14:59:14 +01:00
export default {
name: 'OriginsPage',
2020-01-25 14:59:14 +01:00
components: {
Origins
},
head() {
const { t } = useTranslation()
return {
title: t('origins.title')
}
2020-01-25 14:59:14 +01:00
}
}
</script>