App.vue 143 B

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