feat:save

This commit is contained in:
zyronon
2025-07-09 04:11:48 +08:00
parent b7fa79d148
commit 50bea6d759
46 changed files with 2519 additions and 1108 deletions

View File

@@ -24,11 +24,12 @@ import HomeIndex from "@/pages/pc/home/HomeIndex.vue";
import LearnArticle from "@/pages/pc/article/LearnArticle.vue";
import EditWordDict from "@/pages/pc/word/EditWordDict.vue";
import StudyWord from "@/pages/pc/word/StudyWord.vue";
import EditArticlePage from "@/pages/pc/article/EditArticlePage.vue";
export const routes: RouteRecordRaw[] = [
{
path: '/', component: PC,
redirect: '/word',
redirect: '/edit-article',
children: [
{path: 'home', component: HomeIndex},
{path: 'word', component: WordHome},
@@ -37,6 +38,7 @@ export const routes: RouteRecordRaw[] = [
{path: 'dict', component: Dict2},
{path: 'article', component: ArticleIndex},
{path: 'article2', component: Article2Index},
{path: 'edit-article', component: EditArticlePage},
{path: 'learn-article', component: LearnArticle},
]
},
@@ -115,4 +117,4 @@ router.beforeEach((to: any, from: any) => {
})
export default router
export default router