whycwx
2022-08-13 fe33ea67814b4e08cc13d10cf950b39207d3f191
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export default [
    {
        path:"/",
        redirect: 'home',
        name:"首页",
 
    },
    {
        path:"/home",
        name:"home",
        component: (resolve) => require(['@/pages/home/home.vue'], resolve),
        meta: {
                title: '加密',
            },
    },
    // {
    //     path:"/decode",
    //     name:"decode",
    //     component: (resolve) => require(['@/pages/decode/decode.vue'], resolve),
    //     meta: {
    //             title: '解密',
    //         },
    // },
]