App.vue 292 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. components: {},
  10. };
  11. </script>
  12. <style lang="less">
  13. html {
  14. body {
  15. margin: 0;
  16. padding: 0;
  17. }
  18. margin: 0;
  19. padding: 0;
  20. p {
  21. margin: 0;
  22. padding: 0;
  23. }
  24. }
  25. </style>