Files
dancefinder-app/pages/origins.vue
T

21 lines
338 B
Vue
Raw Normal View History

2019-03-02 16:26:28 +01:00
<template>
<origins />
</template>
<script>
import Origins from "~/components/pages/origins";
import { useTranslation } from '../plugins/i18n'
2019-03-02 16:26:28 +01:00
export default {
components: {
Origins
},
head() {
const { t } = useTranslation()
2019-03-02 16:26:28 +01:00
return {
title: t('origins.title')
2019-03-02 16:26:28 +01:00
};
}
};
</script>