Files
dancefinder-app/pages/index.vue
T

21 lines
307 B
Vue
Raw Normal View History

2019-01-15 13:21:24 +01:00
<template>
<events />
</template>
<script>
import Events from "~/components/pages/events";
import { useTranslation } from '../plugins/i18n'
2019-01-15 13:21:24 +01:00
export default {
components: {
Events
},
head() {
const { t } = useTranslation()
2019-01-15 13:21:24 +01:00
return {
title: t('events.title')
2019-01-15 13:21:24 +01:00
};
}
};
</script>