index.ts 632 字节
Newer Older
1 2
//用户自定义全局路由
export const globalRoutes:Array<any> = [
3 4 5 6
    {
        path: '/register',
        component: ()=> import('@components/login/register.vue')
    },
7 8 9 10
    {
        path: '/qqLoginRedirect',
        component: ()=> import('@components/login/qqLoginRedirect.vue')
    },
11 12 13 14 15 16 17 18
    {
        path: '/weixinLoginRedirect',
        component: ()=> import('@components/login/weixinLoginRedirect.vue'),
    },
    {
        path: '/dingdingLoginRedirect',
        component: ()=> import('@components/login/dingdingLoginRedirect.vue'),
    },
19 20 21 22 23
];
//用户自定义首页路由
export const indexRoutes:Array<any> = [

];