2019-01-15 13:21:24 +01:00
|
|
|
<template>
|
|
|
|
|
<events />
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2020-01-25 14:59:14 +01:00
|
|
|
import Events from '../components/pages/events'
|
2020-01-21 15:51:51 +01:00
|
|
|
import { useTranslation } from '../plugins/i18n'
|
2019-01-15 13:21:24 +01:00
|
|
|
|
|
|
|
|
export default {
|
2021-11-19 21:44:36 +01:00
|
|
|
name: 'IndexPage',
|
2019-01-15 13:21:24 +01:00
|
|
|
components: {
|
|
|
|
|
Events
|
|
|
|
|
},
|
|
|
|
|
head() {
|
2020-01-21 15:51:51 +01:00
|
|
|
const { t } = useTranslation()
|
2019-01-15 13:21:24 +01:00
|
|
|
return {
|
2020-01-21 15:51:51 +01:00
|
|
|
title: t('events.title')
|
2020-01-25 14:59:14 +01:00
|
|
|
}
|
2019-01-15 13:21:24 +01:00
|
|
|
}
|
2020-01-25 14:59:14 +01:00
|
|
|
}
|
2019-01-15 13:21:24 +01:00
|
|
|
</script>
|