2024-02-17 13:52:03 +08:00

30 lines
660 B
Vue

<template>
<van-nav-bar @click-left="router.back">
<template #title>
{{ getTitle }}
</template>
<template #left>
<Icon>
<ChevronBack />
</Icon>
</template>
<template #right>
<slot name="right" />
</template>
</van-nav-bar>
</template>
<script setup lang="ts">
import { Icon } from '@vicons/utils'
import { ChevronBack } from '@vicons/ionicons5'
import { useRoute, useRouter } from 'vue-router'
import { computed } from 'vue'
const router = useRouter()
const currentRoute = useRoute()
const getTitle = computed(() => currentRoute.meta.title as string)
</script>
<style scoped lang="less"></style>