|
@@ -1,4 +1,6 @@
|
|
|
-export const constantRoutes: any[] = [
|
|
|
+import { RouteRecordRaw } from 'vue-router';
|
|
|
+
|
|
|
+export const constantRoutes: RouteRecordRaw[] = [
|
|
|
{
|
|
|
name: 'login',
|
|
|
path: '/login',
|
|
@@ -36,6 +38,14 @@ export const constantRoutes: any[] = [
|
|
|
title: '学生列表',
|
|
|
singleLayout: 'blank'
|
|
|
}
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/xiaoku-ai',
|
|
|
+ name: 'xiaoku-ai',
|
|
|
+ component: () => import('@/views/xiaoku-ai/index'),
|
|
|
+ meta: {
|
|
|
+ title: '小酷AI',
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
},
|