|
- <template>
- <div class="app-container">
- <router-view />
- <van-tabbar route :placeholder="true" >
- <van-tabbar-item replace to="/yinnong/publicity" icon="bullhorn-o">公示</van-tabbar-item>
- <van-tabbar-item replace to="/yinnong/workbench" icon="apps-o">工作台</van-tabbar-item>
- <!-- <van-tabbar-item replace to="/yinnong/home" icon="wap-home-o">家园</van-tabbar-item> -->
- <van-tabbar-item replace to="/yinnong/my" icon="manager-o">我的</van-tabbar-item>
- </van-tabbar>
- </div>
- </template>
- <script>
- export default {
- name: "yinnongIndex",
- data() {
- return {
- active: 0,
-
- };
- },
- created() {
- ;
- },
- methods: {
-
- },
- };
- </script>
-
- <style scoped >
-
- >>> .van-tabbar{
- height:2rem;
- }
- </style>
|