新增字典前台页面

This commit is contained in:
fks-yangshouda
2024-07-22 10:56:30 +08:00
parent 088590beea
commit 0fba8917f2
5 changed files with 375 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
const dict = {
path: '/dict',
name: 'dict',
meta: { title: '字典', icon: 'zidian', index: 7, hideChildren: true },
redirect: { name: 'dictIndex' },
children: [
{
path: 'index',
name: 'dictIndex',
meta: { title: '字典', hideChildren: true, icon: 'zidian' },
component: () => import('/@/view/dict/index.vue'),
},
],
};
export default dict;