forked from Mirrors/elk
18 lines
353 B
Vue
18 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>
|