We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3884d00 + f7f6416 commit d960ef4Copy full SHA for d960ef4
1 file changed
src/pages/index/router/index.ts
@@ -3,6 +3,7 @@ import Home from '../views/Home.vue';
3
import TutorialIndex from '../views/tutorial/index.vue';
4
import TutorialHello from '../views/tutorial/Hello.vue';
5
import TutoialDismantling from '../views/tutorial/Dismantling.vue';
6
+import TutoialDismantling2 from '../views/tutorial/Dismantling2.vue';
7
8
const routes: Array<RouteRecordRaw> = [
9
{
@@ -18,13 +19,18 @@ const routes: Array<RouteRecordRaw> = [
18
19
children: [
20
21
path: 'hello',
- name: 'TutorialHello',
22
+ name: '正方体',
23
component: TutorialHello
24
},
25
26
path: 'dismantling',
- name: 'TutorialDismantling',
27
+ name: '固定模型拆分效果',
28
component: TutoialDismantling
29
+ },
30
+ {
31
+ path: 'dismantling2',
32
+ name: '动态模型拆分效果',
33
+ component: TutoialDismantling2
34
}
35
]
36
0 commit comments