App.vue 212 B

1234567891011121314151617181920
  1. <template>
  2. <div>
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. components: {
  10. }
  11. }
  12. </script>
  13. <style>
  14. body {
  15. margin: 0;
  16. background-color: #FFF;
  17. }
  18. </style>