App.vue 151 B

12345678910111213
  1. <script setup>
  2. import {
  3. RouterView
  4. } from 'vue-router'
  5. </script>
  6. <template>
  7. <RouterView />
  8. </template>
  9. <style lang="scss">
  10. </style>