22 lines
333 B
Vue
22 lines
333 B
Vue
<template>
|
|
<origins />
|
|
</template>
|
|
|
|
<script>
|
|
import Origins from '../components/pages/origins'
|
|
import { useTranslation } from '../plugins/i18n'
|
|
|
|
export default {
|
|
name: 'OriginsPage',
|
|
components: {
|
|
Origins
|
|
},
|
|
head() {
|
|
const { t } = useTranslation()
|
|
return {
|
|
title: t('origins.title')
|
|
}
|
|
}
|
|
}
|
|
</script>
|