App.vue 201B

12345678910111213141516171819
  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. width: 100%;
  14. height: 100%;
  15. position: relative;
  16. }
  17. </style>