App.vue 657 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div id="app">
  3. <navTitle></navTitle>
  4. <div class="router-view">
  5. <router-view></router-view>
  6. </div>
  7. <navigation></navigation>
  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. }
  24. .router-view {
  25. position: absolute;
  26. overflow-y: auto;
  27. width: 100%;
  28. top: 6%;
  29. left: 0;
  30. right: 0;
  31. bottom: 46px;
  32. background-color: #d3d3d3;
  33. }
  34. </style>