Files
dancefinder-app/pages/index.vue
T

15 lines
287 B
Vue

<template>
<events />
</template>
<script setup lang='ts'>
import { useHead } from '@unhead/vue'
import Events from '~/components/pages/events/index.vue'
import { useTranslation } from '~/plugins/i18n'
const { t } = useTranslation()
useHead({
title: t('events.title')
})
</script>