index.vue 642 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="">
  3. <view>
  4. 首页
  5. </view>
  6. <u-tabbar :value="2" :fixed="true" :placeholder="true" :safeAreaInsetBottom="true">
  7. <u-tabbar-item @click='changeRouter(item)' v-for="item in tabbarList " :key="item.icon" :text="item.text"
  8. :icon="item.icon">
  9. </u-tabbar-item>
  10. </u-tabbar>
  11. </view>
  12. </template>
  13. <script>
  14. import TabBar from "@/mixins/tabbar.js"
  15. export default {
  16. mixins: [TabBar],
  17. data() {
  18. return {
  19. };
  20. },
  21. methods: {
  22. // changeRouter(item) {
  23. // console.log(11, item);
  24. // uni.redirectTo({
  25. // url: item.path
  26. // })
  27. // }
  28. },
  29. }
  30. </script>
  31. <style lang="scss">
  32. </style>