App.vue 182 B

123456789101112
  1. <script setup lang="ts">
  2. import { RouterView } from 'vue-router'
  3. </script>
  4. <template>
  5. <div class="app_container">
  6. <RouterView />
  7. </div>
  8. </template>
  9. <style scoped>
  10. </style>