Develop dictionary management function

This commit is contained in:
zyronon
2023-11-29 01:57:23 +08:00
parent 2d06e1fc2a
commit 72875a5fc9
18 changed files with 197 additions and 1237 deletions

View File

@@ -2,10 +2,10 @@ import * as VueRouter from 'vue-router'
import Practice from "@/pages/practice/index.vue";
import Dict from '@/pages/dict'
const routes = [
const routes: any[] = [
{path: '/practice', component: Practice},
{path: '/dict', component: Dict},
{path: '/', redirect:'/dict'},
{path: '/dict', name: 'dict', component: Dict},
{path: '/', redirect: '/dict'},
]
const router = VueRouter.createRouter({