mirror of
https://github.com/elk-zone/elk.git
synced 2024-12-18 17:11:56 +03:00
9acaf7b03a
next step: show search bar on title without rediction
17 lines
353 B
Vue
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>
|