b6fcb2e078923d16357fbe29bd9c4c1fcfcefe3e.svn-base 261 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: #EFEFEF;
  14. width: 100%;
  15. }
  16. body{
  17. margin: 0;
  18. padding: 0;
  19. width: 100%;
  20. /* height: 100%; */
  21. }
  22. </style>