a8f8e12e58c95342b4cb6df0ff38b5164a6ea0d8.svn-base 255 B

123456789101112131415161718192021222324
  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. background: #E4E4E4;
  14. width: 100%;
  15. }
  16. body{
  17. margin: 0;
  18. padding: 0;
  19. width: 100%;
  20. height: 100%;
  21. }
  22. </style>