unibest/src/layouts/tabbar.vue

11 lines
157 B
Vue
Raw Normal View History

2024-05-28 11:33:15 +08:00
<script lang="ts" setup>
import FgTabbar from './fg-tabbar/fg-tabbar.vue'
2024-05-28 11:33:15 +08:00
</script>
<template>
2025-06-21 19:22:12 +08:00
<view>
<slot />
<FgTabbar />
2025-06-21 19:22:12 +08:00
</view>
</template>