| 123456789101112131415161718192021222324252627282930313233343536 |
- 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: '未完待续',
- }]
- },
- ]
|