App.vue 321 B

123456789101112131415161718192021222324
  1. <template>
  2. <div id="app-root">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script setup>
  7. import { RouterView } from 'vue-router';
  8. </script>
  9. <style>
  10. * {
  11. margin: 0;
  12. box-sizing: border-box;
  13. }
  14. #app-root {
  15. width: 100%;
  16. min-height: 100vh;
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. }
  21. </style>