15 lines
276 B
Vue
15 lines
276 B
Vue
<template>
|
|
<origins />
|
|
</template>
|
|
|
|
<script setup lang='ts'>
|
|
import { useHead } from '@unhead/vue'
|
|
import { useI18n } from '#i18n'
|
|
import Origins from '../components/pages/origins/origin-page.vue'
|
|
|
|
const { t } = useI18n()
|
|
useHead({
|
|
title: t('origins.title'),
|
|
})
|
|
</script>
|