App.vue 302 B

1234567891011121314151617181920212223
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style>
  7. body {
  8. width: 100vw;
  9. height: 100vh;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. background: #ccc;
  14. overflow: hidden;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. div {
  19. width: 100%;
  20. height: 100%;
  21. }
  22. </style>