移动端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

36 行
750 B

  1. <template>
  2. <div class="app-container">
  3. <router-view />
  4. <van-tabbar route :placeholder="true" >
  5. <van-tabbar-item replace to="/yinnong/publicity" icon="bullhorn-o">公示</van-tabbar-item>
  6. <van-tabbar-item replace to="/yinnong/workbench" icon="apps-o">工作台</van-tabbar-item>
  7. <!-- <van-tabbar-item replace to="/yinnong/home" icon="wap-home-o">家园</van-tabbar-item> -->
  8. <van-tabbar-item replace to="/yinnong/my" icon="manager-o">我的</van-tabbar-item>
  9. </van-tabbar>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. name: "yinnongIndex",
  15. data() {
  16. return {
  17. active: 0,
  18. };
  19. },
  20. created() {
  21. ;
  22. },
  23. methods: {
  24. },
  25. };
  26. </script>
  27. <style scoped >
  28. >>> .van-tabbar{
  29. height:2rem;
  30. }
  31. </style>