fix Bug or add example

This commit is contained in:
Ah jung
2021-07-21 18:33:02 +08:00
parent 54e68db0c2
commit fa8b33acbe
32 changed files with 1096 additions and 287 deletions

View File

@@ -33,6 +33,15 @@ const routes: Array<RouteRecordRaw> = [
title: '基础列表',
},
component: () => import('@/views/list/basicList/index.vue')
},
{
path: 'basic-info/:id?',
name: 'basic-info',
meta: {
title: '基础详情',
hidden:true
},
component: () => import('@/views/list/basicList/info.vue')
}
],
}