cankao-h5/src/pages/minihome/index.vue

25 lines
525 B
Vue
Raw Normal View History

2025-08-13 11:53:14 +08:00
<template>
<!-- 顶部 banner 区域 -->
<view class="all">
<Navbar title="中证参考" :hasBack="false"></Navbar>
<text>123</text>
<tabbar></tabbar>
</view>
</template>
<script setup>
import { ref, onMounted, onUnmounted, reactive } from "vue";
import tabbar from "@/components/mini/Tabbar.vue";
import Navbar from '@/components/mini/Navbar.vue'
const tabIndex = ref(0);
function tabChange(index) {
tabIndex.value = index;
}
onMounted(async () => { });
</script>
<style scoped lang="scss"></style>