Files
aiot-uniapp/src/App.ku.vue
feige996 70b628b7ea style: 隐藏全局配置的示例视图
将示例视图添加 hidden 类以隐藏,保留代码作为参考
2025-08-25 11:21:54 +08:00

39 lines
959 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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()
isCurrentPageTabbar.value = isPageTabbar(path)
})
const helloKuRoot = ref('Hello AppKuVue')
const exposeRef = ref('this is form app.Ku.vue')
defineExpose({
exposeRef,
})
</script>
<template>
<!-- 这个先隐藏了知道这样用就行 -->
<view class="hidden text-center">
{{ helloKuRoot }}这里可以配置全局的东西
</view>
<wd-config-provider :theme-vars="themeStore.themeVars" :theme="themeStore.theme">
<KuRootView />
</wd-config-provider>
<FgTabbar v-if="isCurrentPageTabbar" />
<wd-toast />
<wd-message-box />
</template>