App.vue 196 B

12345678910111213141516
  1. <template>
  2. <router-view />
  3. </template>
  4. <script setup lang="ts">
  5. // App root component
  6. </script>
  7. <style>
  8. html, body, #app {
  9. margin: 0;
  10. padding: 0;
  11. height: 100%;
  12. width: 100%;
  13. }
  14. </style>