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
21 lines
366 B
<script setup>
|
|
import { useProjectTracking } from './assets/js/useProjectTracking.js'
|
|
const projectRoutes = [
|
|
'/Selectmodel',
|
|
'/homePage',
|
|
'/AIchat',
|
|
'/AIfind',
|
|
'/Announcement',
|
|
'/DBQBmodel',
|
|
'/Emotionsmodel'
|
|
]
|
|
|
|
// 项目追踪
|
|
useProjectTracking(projectRoutes)
|
|
</script>
|
|
|
|
<template>
|
|
<router-view></router-view>
|
|
</template>
|
|
|
|
<style scoped></style>
|