Tabber.vue 561 B

123456789101112131415161718
  1. <template>
  2. <van-tabbar v-model="active">
  3. <van-tabbar-item replace to="/home" icon="wap-home">主页</van-tabbar-item>
  4. <van-tabbar-item replace to="/cateGory" icon="expand">分类</van-tabbar-item>
  5. <van-tabbar-item replace to="/shopCart" icon="shopping-cart">购物车</van-tabbar-item>
  6. <van-tabbar-item replace to="/me" icon="manager">我的</van-tabbar-item>
  7. </van-tabbar>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. active: 0,
  14. }
  15. },
  16. }
  17. </script>
  18. <style lang="less"></style>