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'
|
2024-02-02 14:46:42 +01:00
|
|
|
import Events from '~/components/pages/events/index.vue'
|
|
|
|
|
import { useTranslation } from '~/plugins/i18n'
|
2019-01-15 13:21:24 +01:00
|
|
|
|
2024-02-02 18:55:45 +01:00
|
|
|
const { t } = useTranslation()
|
|
|
|
|
useHead({
|
|
|
|
|
title: t('events.title')
|
|
|
|
|
})
|
2019-01-15 13:21:24 +01:00
|
|
|
</script>
|