App.vue 304 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style>
  12. html,
  13. body,
  14. #app {
  15. padding: 0;
  16. margin: 0;
  17. height: calc(100vh);
  18. width: 100%;
  19. background-color: #eaeaea;
  20. }
  21. a {
  22. text-decoration: none;
  23. }
  24. </style>