chore: migrate to script setup style

This commit is contained in:
2024-02-02 18:55:45 +01:00
parent d1bcaf423f
commit 171e1039a7
15 changed files with 3468 additions and 4540 deletions
+6 -13
View File
@@ -2,20 +2,13 @@
<events />
</template>
<script lang='ts'>
<script setup lang='ts'>
import { useHead } from '@unhead/vue'
import Events from '~/components/pages/events/index.vue'
import { useTranslation } from '~/plugins/i18n'
export default {
name: 'IndexPage',
components: {
Events
},
head () {
const { t } = useTranslation()
return {
title: t('events.title')
}
}
}
const { t } = useTranslation()
useHead({
title: t('events.title')
})
</script>