Files
2025-07-16 22:01:55 +02:00

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>