Files
dancefinder-app/pages/filters.vue
T

15 lines
276 B
Vue

<template>
<filters />
</template>
<script setup lang='ts'>
import { useHead } from '@unhead/vue'
import { useI18n } from '#i18n'
import Filters from '../components/pages/filters/filter-page.vue'
const { t } = useI18n()
useHead({
title: t('filters.title'),
})
</script>