Files
dancefinder-app/pages/filters.vue
T

21 lines
338 B
Vue
Raw Normal View History

2019-03-02 21:51:25 +01:00
<template>
<filters />
</template>
<script>
import Filters from "~/components/pages/filters";
import { useTranslation } from '../plugins/i18n'
2019-03-02 21:51:25 +01:00
export default {
components: {
Filters
},
head() {
const { t } = useTranslation()
2019-03-02 21:51:25 +01:00
return {
title: t('filters.title')
2019-03-02 21:51:25 +01:00
};
}
};
</script>