18 lines
319 B
Vue
18 lines
319 B
Vue
|
<script setup>
|
||
|
import XTabbar from "@/components/x-tabbar/index.vue"
|
||
|
import { tabbar } from '@/config/tabbar/index.js'
|
||
|
import {useStatus} from "@/store/status"
|
||
|
|
||
|
const {tabBarIndex}= useStatus()
|
||
|
|
||
|
</script>
|
||
|
<template>
|
||
|
<div class="flex flex-col h-[100vh]" >
|
||
|
|
||
|
123
|
||
|
</div>
|
||
|
</template>
|
||
|
<style scoped lang="scss">
|
||
|
|
||
|
</style>
|