TabBar.vue 337 B

12345678910111213141516
  1. <template>
  2. <view class="tab_bar">
  3. <u-tabbar v-model="current" :list="list" :mid-button="true" :mid-button-size="60" class="tab_items"></u-tabbar>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. current: 0,
  11. list: this.$store.state.tabLists
  12. }
  13. },
  14. }
  15. </script>