2023-12-05 02:11:10 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
2023-12-05 10:53:17 +00:00
|
|
|
<home v-if="acc===0"/>
|
|
|
|
<mine v-if="acc===1"/>
|
2023-12-05 02:11:10 +00:00
|
|
|
<self-tabbar v-model="acc"></self-tabbar>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
2023-12-05 10:53:17 +00:00
|
|
|
import home from '../home/index.vue'
|
|
|
|
import mine from '../mine/index.vue'
|
2023-12-05 02:11:10 +00:00
|
|
|
import selfTabbar from '../../components/self-tabbar/index.vue'
|
|
|
|
import {ref} from "vue";
|
|
|
|
const acc=ref(0)
|
|
|
|
</script>
|