智慧保安互联网APP
zengh
2022-06-21 4efeb31d5b4921d7e851c256009486ad86bc70e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
export default [{
        groupName: '基础功能',
        list: [{
            path: '/pages/demo/storage',
            icon: 'cell',
            title: 'Storage 操作',
        }, {
            path: '/pages/demo/vuex',
            icon: 'sticky',
            title: 'Vuex 操作',
        }]
    },
    {
        groupName: '网络功能',
        list: [{
            path: '/pages/demo/mock',
            icon: 'layout',
            title: 'Mock 调用',
        }, {
            path: '/pages/demo/request',
            icon: 'tabbar',
            title: 'API 调用',
        }]
    }, {
        groupName: '业务功能',
        list: [{
            path: '/pages/demo/crud',
            icon: 'tag',
            title: 'CRUD 操作',
        },{
            path: '/pages/componentsA/parse/index',
            icon: 'loading',
            title: '未完待续',
        }]
    },
]