chore: upgrade to Vue3/Vuetify3

This commit is contained in:
2024-02-05 16:48:02 +01:00
parent 171e1039a7
commit ef3b5460ad
65 changed files with 3153 additions and 9032 deletions
+4 -4
View File
@@ -4,11 +4,11 @@
<script setup lang='ts'>
import { useHead } from '@unhead/vue'
import Events from '~/components/pages/events/index.vue'
import { useTranslation } from '~/plugins/i18n'
import { useI18n } from '#i18n'
import Events from '~/components/pages/events/event-page.vue'
const { t } = useTranslation()
const { t } = useI18n()
useHead({
title: t('events.title')
title: t('events.title'),
})
</script>