| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <script setup lang="ts">
- import { ref } from 'vue'
- import { useThemeStore } from '@/store'
- import FgTabbar from '@/tabbar/index.vue'
- import { isPageTabbar } from './tabbar/store'
- import { currRoute } from './utils'
- const themeStore = useThemeStore()
- const isCurrentPageTabbar = ref(true)
- onShow(() => {
- console.log('App.ku.vue onShow', currRoute())
- const { path } = currRoute()
- // “蜡笔小开心”提到本地是 '/pages/index/index',线上是 '/' 导致线上 tabbar 不见了
- // 所以这里需要判断一下,如果是 '/' 就当做首页,也要显示 tabbar
- if (path === '/') {
- isCurrentPageTabbar.value = true
- }
- else {
- isCurrentPageTabbar.value = isPageTabbar(path)
- }
- })
- const helloKuRoot = ref('Hello AppKuVue')
- const exposeRef = ref('this is form app.Ku.vue')
- defineExpose({
- exposeRef,
- })
- </script>
- <template>
- <wd-config-provider :theme-vars="themeStore.themeVars" :theme="themeStore.theme">
- <!-- 这个先隐藏了,知道这样用就行 -->
- <view class="hidden text-center">
- {{ helloKuRoot }},这里可以配置全局的东西
- </view>
- <KuRootView />
- <FgTabbar v-if="isCurrentPageTabbar" />
- <wd-toast />
- <wd-message-box />
- </wd-config-provider>
- </template>
|