App.vue 526 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <style>
  7. #app {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. top: 0;
  12. left: 0;
  13. right: 0;
  14. bottom: 0;
  15. overflow: hidden;
  16. display: block;
  17. margin: 0 auto;
  18. font-family: Avenir, Helvetica, Arial, sans-serif;
  19. -webkit-font-smoothing: antialiased;
  20. -moz-osx-font-smoothing: grayscale;
  21. text-align: center;
  22. color: #2c3e50;
  23. }
  24. </style>