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