Files
dancefinder-app/pages/index.vue
T

22 lines
326 B
Vue
Raw Normal View History

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'
import { useTranslation } from '../plugins/i18n'
2019-01-15 13:21:24 +01:00
export default {
name: 'IndexPage',
2019-01-15 13:21:24 +01:00
components: {
Events
},
head() {
const { t } = useTranslation()
2019-01-15 13:21:24 +01:00
return {
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>