liveh5-nuxt/app/components/AppHeader.vue

33 lines
668 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>