You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
366 B

4 months ago
4 months ago
4 weeks ago
4 weeks ago
4 months ago
4 months ago
  1. <script setup>
  2. import { useProjectTracking } from './assets/js/useProjectTracking.js'
  3. const projectRoutes = [
  4. '/Selectmodel',
  5. '/homePage',
  6. '/AIchat',
  7. '/AIfind',
  8. '/Announcement',
  9. '/DBQBmodel',
  10. '/Emotionsmodel'
  11. ]
  12. // 项目追踪
  13. useProjectTracking(projectRoutes)
  14. </script>
  15. <template>
  16. <router-view></router-view>
  17. </template>
  18. <style scoped></style>