2019-01-15 13:21:24 +01:00
|
|
|
<template>
|
|
|
|
|
<events />
|
|
|
|
|
</template>
|
|
|
|
|
|
2024-02-02 18:55:45 +01:00
|
|
|
<script setup lang='ts'>
|
|
|
|
|
import { useHead } from '@unhead/vue'
|
2025-06-13 15:21:27 +02:00
|
|
|
|
2024-02-05 16:48:02 +01:00
|
|
|
import { useI18n } from '#i18n'
|
|
|
|
|
import Events from '~/components/pages/events/event-page.vue'
|
2019-01-15 13:21:24 +01:00
|
|
|
|
2024-02-05 16:48:02 +01:00
|
|
|
const { t } = useI18n()
|
2024-02-02 18:55:45 +01:00
|
|
|
useHead({
|
2024-02-05 16:48:02 +01:00
|
|
|
title: t('events.title'),
|
2024-02-02 18:55:45 +01:00
|
|
|
})
|
2019-01-15 13:21:24 +01:00
|
|
|
</script>
|