liveh5-nuxt/app/components/AppHeader.vue

40 lines
986 B
Vue
Raw Normal View History

2025-01-08 05:26:12 +00:00
<script setup lang="ts">
import { useAppFooterRouteNames as routeWhiteList } from '~/config'
const route = useRoute()
const router = useRouter()
function onBack() {
if (window.history.state.back)
history.back()
else
router.replace('/')
}
const { t } = useI18n()
const title = computed(() => {
if (!route.meta)
return ''
return route.meta.i18n ? t(route.meta.i18n) : (route.meta.title || '')
})
const showLeftArrow = computed(() => route.name && routeWhiteList.includes(route.name))
</script>
<template>
<VanNavBar
:title="title"
:left-arrow="!showLeftArrow"
placeholder clickable fixed
@click-left="onBack"
>
<template #title>
<div class="flex flex-col items-center justify-center">
<div class="text-#000000 text-17px mb-5px font-600">京都拍卖会</div>
<div class="text-#939393 text-10px line-height-none font-100">2025.01.18 蒙娜丽莎的微笑</div>
</div>
</template>
</VanNavBar>
2025-01-08 05:26:12 +00:00
</template>