2019-03-02 21:51:25 +01:00
|
|
|
<template>
|
|
|
|
|
<filters />
|
|
|
|
|
</template>
|
|
|
|
|
|
2024-02-02 18:55:45 +01:00
|
|
|
<script setup lang='ts'>
|
2024-02-05 16:48:02 +01:00
|
|
|
import { useI18n } from '#i18n'
|
2025-07-16 16:05:26 +00:00
|
|
|
import { useHead } from '#imports'
|
2025-06-13 15:21:27 +02:00
|
|
|
|
2024-02-05 16:48:02 +01:00
|
|
|
import Filters from '../components/pages/filters/filter-page.vue'
|
2019-03-02 21:51:25 +01:00
|
|
|
|
2024-02-05 16:48:02 +01:00
|
|
|
const { t } = useI18n()
|
2024-02-02 18:55:45 +01:00
|
|
|
useHead({
|
2024-02-05 16:48:02 +01:00
|
|
|
title: t('filters.title'),
|
2024-02-02 18:55:45 +01:00
|
|
|
})
|
2019-03-02 21:51:25 +01:00
|
|
|
</script>
|