15 lines
292 B
Vue
15 lines
292 B
Vue
<template>
|
|
<filters />
|
|
</template>
|
|
|
|
<script setup lang='ts'>
|
|
import { useHead } from '@unhead/vue'
|
|
import Filters from '../components/pages/filters/index.vue'
|
|
import { useTranslation } from '~/plugins/i18n'
|
|
|
|
const { t } = useTranslation()
|
|
useHead({
|
|
title: t('filters.title')
|
|
})
|
|
</script>
|