25 lines
525 B
Vue
25 lines
525 B
Vue
|
|
<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>
|