elk/pages/search.vue
Michel EDIGHOFFER 9acaf7b03a fix: restore search page for mobile
next step: show search bar on title without rediction
2023-02-10 20:06:01 +01:00

17 lines
353 B
Vue

<script setup lang="ts">
import { useI18n } from 'vue-i18n'
const { t } = useI18n()
useHeadFixed({
title: () => t('nav.search'),
})
</script>
<template>
<MainContent no-overflow-hidden>
<template v-if="isHydrated" #title>
<SearchWidget w-full m-1 />
</template>
<!-- TODO: put search result here -->
</MainContent>
</template>