13 lines
197 B
Vue
13 lines
197 B
Vue
<template>
|
|
<!-- 底部菜单 -->
|
|
<TabBar />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import TabBar from "~/components/AppFooter/TabBar/TabBar.vue";
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|