App.vue 532 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div id="app">
  3. <div class="app_box">
  4. <router-view></router-view>
  5. <hr>
  6. <navigation></navigation>
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'app'
  13. }
  14. </script>
  15. <style>
  16. #app {
  17. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  18. -webkit-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale;
  20. text-align: center;
  21. color: #2c3e50;
  22. background-color: #d3d3d3;
  23. position: fixed;
  24. overflow-y:auto;
  25. width: 100%;
  26. top:0;
  27. left: 0;
  28. bottom: 8%;
  29. }
  30. </style>