add mobile

This commit is contained in:
zyronon
2023-12-08 16:19:11 +08:00
parent 6e9c1a569e
commit b125d5a522
3 changed files with 106 additions and 1 deletions

View File

@@ -1,11 +1,13 @@
import * as VueRouter from 'vue-router'
import Practice from "@/pages/practice/index.vue";
import Dict from '@/pages/dict'
import Dict from '@/pages/dict/index.vue'
import Mobile from '@/pages/mobile/index.vue'
import Test from "@/pages/test.vue";
const routes: any[] = [
{path: '/practice', component: Practice},
{path: '/dict', name: 'dict', component: Dict},
{path: '/mobile', name: 'dict', component: Mobile},
{path: '/test', name: 'test', component: Test},
{path: '/', redirect: '/practice'},
]