12 lines
311 B
Vue
12 lines
311 B
Vue
|
<script setup>
|
||
|
import tmNavbar from '@/uni_modules/tmui/components/tm-navbar/tm-navbar.vue';
|
||
|
import {useStatus} from "@/store/status"
|
||
|
const {currentNavbar} = useStatus()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<tm-navbar :hideBack="false" hideHome :title="currentNavbar.title"/>
|
||
|
</template>
|
||
|
<style scoped lang="scss">
|
||
|
</style>
|