chat-app/src/pages/index/index.vue

18 lines
319 B
Vue
Raw Normal View History

2024-11-11 06:46:14 +00:00
<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>