This commit is contained in:
guo
2025-06-02 18:50:12 +08:00
commit 09195f8c18
32 changed files with 6053 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
import {createRouter,createWebHistory} from 'vue-router'
import Login from "@/components/Login.vue";
import Study from "@/components/Study.vue";
import Welcome from "@/components/Welcome.vue";
import Review from "@/components/Review.vue";
const router = createRouter({
history: createWebHistory(),
routes:[
{
path:'/',
redirect:'/login',
},
{
path:'/login',
component:Login
},
{
path:'/welcome',
component: Welcome
},
{
path:'/study',
component: Study
},
{
path:'/review',
component: Review
}
]
});
export default router;