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 {
|
2021-11-19 21:44:36 +01:00
|
|
|
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>
|