App.vue 130 B

123456789
  1. <script setup>
  2. import { RouterView } from 'vue-router'
  3. </script>
  4. <template>
  5. <RouterView />
  6. </template>
  7. <style scoped></style>