21 lines
307 B
Vue
21 lines
307 B
Vue
<template>
|
|
<events />
|
|
</template>
|
|
|
|
<script>
|
|
import Events from "~/components/pages/events";
|
|
import { useTranslation } from '../plugins/i18n'
|
|
|
|
export default {
|
|
components: {
|
|
Events
|
|
},
|
|
head() {
|
|
const { t } = useTranslation()
|
|
return {
|
|
title: t('events.title')
|
|
};
|
|
}
|
|
};
|
|
</script>
|