15 lines
267 B
Vue
15 lines
267 B
Vue
<template>
|
|
<events />
|
|
</template>
|
|
|
|
<script setup lang='ts'>
|
|
import { useI18n } from '#i18n'
|
|
import { useHead } from '#imports'
|
|
import Events from '~/components/pages/events/event-page.vue'
|
|
|
|
const { t } = useI18n()
|
|
useHead({
|
|
title: t('events.title'),
|
|
})
|
|
</script>
|