123456789101112131415161718192021222324252627282930313233 |
- <template>
- <view class="">
- <view>
- 网关
- </view>
- <u-tabbar :value="1" :fixed="true" :placeholder="true" :safeAreaInsetBottom="true">
- <u-tabbar-item @click='changeRouter(item)' v-for="item in tabbarList " :key="item.icon" :text="item.text"
- :icon="item.icon">
- </u-tabbar-item>
- </u-tabbar>
- </view>
- </template>
- <script>
- import TabBar from "@/mixins/tabbar.js"
- export default {
- mixins: [TabBar],
- data() {
- return {
-
- };
- },
- methods: {
-
- },
- }
- </script>
- <style lang="scss">
- </style>
|