12345678910111213141516 |
- <template>
- <view class="tab_bar">
- <u-tabbar v-model="current" :list="list" :mid-button="true" :mid-button-size="60" class="tab_items"></u-tabbar>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- current: 0,
- list: this.$store.state.tabLists
- }
- },
- }
- </script>
|