App.vue 349 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style>
  12. #app {
  13. position: absolute;
  14. top: 0;
  15. bottom: 0;
  16. left: 0;
  17. right: 0;
  18. width: 100%;
  19. overflow: hidden;
  20. display: block;
  21. margin: 0 auto;
  22. }
  23. </style>