App.vue 154 B

123456789101112
  1. <script setup>
  2. import { RouterView } from 'vue-router'
  3. </script>
  4. <template>
  5. <v-app>
  6. <RouterView />
  7. </v-app>
  8. </template>
  9. <style scoped>
  10. </style>