|
@@ -6,11 +6,12 @@ import Step_2 from "../views/Step_2.vue";
|
|
|
import Step_3 from "../views/Step_3.vue";
|
|
|
import Step_4 from "../views/Step_4.vue";
|
|
|
import Step_5 from "../views/Step_5.vue";
|
|
|
- // 天燈
|
|
|
- import Interact from '../views/Interact.vue'
|
|
|
- import InteractStep_1 from '../views/InteractStep_1.vue'
|
|
|
- import InteractStep_2 from '../views/InteractStep_2.vue'
|
|
|
- import InteractHome from '../views/InteractHome.vue'
|
|
|
+// 天燈
|
|
|
+import Interact from '../views/Interact.vue'
|
|
|
+import InteractHome from '../views/InteractHome.vue'
|
|
|
+import InteractStep_1 from '../views/InteractStep_1.vue'
|
|
|
+import InteractStep_2 from '../views/InteractStep_2.vue'
|
|
|
+import InteractStep_3 from '../views/InteractStep_3.vue'
|
|
|
|
|
|
const router = createRouter({
|
|
|
history: createWebHashHistory(),
|
|
@@ -50,6 +51,11 @@ const router = createRouter({
|
|
|
name: 'Interact',
|
|
|
component: Interact
|
|
|
},
|
|
|
+ {
|
|
|
+ path: '/interacthome',
|
|
|
+ name: 'Interact_home',
|
|
|
+ component: InteractHome
|
|
|
+ },
|
|
|
{
|
|
|
path: '/interact_step1',
|
|
|
name: 'Interact_step1',
|
|
@@ -61,10 +67,10 @@ const router = createRouter({
|
|
|
component: InteractStep_2
|
|
|
},
|
|
|
{
|
|
|
- path: '/interacthome',
|
|
|
- name: 'Interact_home',
|
|
|
- component: InteractHome
|
|
|
- }
|
|
|
+ path: '/interact_step3',
|
|
|
+ name: 'Interact_step3',
|
|
|
+ component: InteractStep_3
|
|
|
+ },
|
|
|
],
|
|
|
},
|
|
|
]
|