App.vue 234 B

12345678910111213
  1. <script setup lang='ts'>
  2. import { RouterView } from "vue-router"
  3. import AgentDialog from "./views/User/acidModel/AgentDialog.vue"
  4. </script>
  5. <template>
  6. <RouterView/>
  7. <!-- <AgentDialog/> -->
  8. </template>
  9. <style scoped>
  10. </style>