2019-03-02 21:51:25 +01:00
|
|
|
<template>
|
|
|
|
|
<filters />
|
|
|
|
|
</template>
|
|
|
|
|
|
2024-02-02 18:55:45 +01:00
|
|
|
<script setup lang='ts'>
|
|
|
|
|
import { useHead } from '@unhead/vue'
|
|
|
|
|
import Filters from '../components/pages/filters/index.vue'
|
|
|
|
|
import { useTranslation } from '~/plugins/i18n'
|
2019-03-02 21:51:25 +01:00
|
|
|
|
2024-02-02 18:55:45 +01:00
|
|
|
const { t } = useTranslation()
|
|
|
|
|
useHead({
|
|
|
|
|
title: t('filters.title')
|
|
|
|
|
})
|
2019-03-02 21:51:25 +01:00
|
|
|
</script>
|