15 lines
292 B
Vue
15 lines
292 B
Vue
<template>
|
|
<origins />
|
|
</template>
|
|
|
|
<script setup lang='ts'>
|
|
import { useHead } from '@unhead/vue'
|
|
import Origins from '../components/pages/origins/index.vue'
|
|
import { useTranslation } from '~/plugins/i18n'
|
|
|
|
const { t } = useTranslation()
|
|
useHead({
|
|
title: t('origins.title')
|
|
})
|
|
</script>
|