22 lines
345 B
Vue
22 lines
345 B
Vue
<template>
|
|
<events />
|
|
</template>
|
|
|
|
<script lang='ts'>
|
|
import Events from '~/components/pages/events/index.vue'
|
|
import { useTranslation } from '~/plugins/i18n'
|
|
|
|
export default {
|
|
name: 'IndexPage',
|
|
components: {
|
|
Events
|
|
},
|
|
head () {
|
|
const { t } = useTranslation()
|
|
return {
|
|
title: t('events.title')
|
|
}
|
|
}
|
|
}
|
|
</script>
|