App.vue 514 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div id="app" style="height: 100%">
  3. <router-view style="height: 100%"/>
  4. <tab-bar v-if="$route.meta.navShow"/>
  5. </div>
  6. </template>
  7. <script>
  8. import TabBar from "./components/TabBar";
  9. export default {
  10. components: {TabBar},
  11. }
  12. </script>
  13. <style>
  14. #app {
  15. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  16. -webkit-font-smoothing: antialiased;
  17. -moz-osx-font-smoothing: grayscale;
  18. text-align: center;
  19. color: #2c3e50;
  20. }
  21. body {
  22. background-color: #fff6e3;
  23. }
  24. </style>