Files
dancefinder-app/pages/origins.vue
T

22 lines
333 B
Vue
Raw Normal View History

2019-03-02 16:26:28 +01:00
<template>
<origins />
</template>
<script>
2020-01-25 14:59:14 +01:00
import Origins from '../components/pages/origins'
import { useTranslation } from '../plugins/i18n'
2019-03-02 16:26:28 +01:00
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')
2019-03-02 16:26:28 +01:00
}
2020-01-25 14:59:14 +01:00
}
}
2019-03-02 16:26:28 +01:00
</script>