12 lines
216 B
Vue
12 lines
216 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<self-tabbar v-model="acc"></self-tabbar>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script setup>
|
||
|
import selfTabbar from '../../components/self-tabbar/index.vue'
|
||
|
import {ref} from "vue";
|
||
|
const acc=ref(0)
|
||
|
|
||
|
</script>
|