bottomTabBar.vue 452 B

123456789101112
  1. <template>
  2. <van-tabbar v-model="active" route>
  3. <van-tabbar-item icon="home-o" to="/index">首页</van-tabbar-item>
  4. <van-tabbar-item icon="clock-o" to="/reservation">预约考试</van-tabbar-item>
  5. <van-tabbar-item icon="manager-o" to="/mine">个人中心</van-tabbar-item>
  6. </van-tabbar>
  7. </template>
  8. <script name="BottomTabBar" setup>
  9. import { ref } from "vue";
  10. const active = ref(0);
  11. </script>
  12. <style lang="" scoped></style>