menu.js 678 字节
Newer Older
B
beiwei30 已提交
1
const Menu = [
马金凯 已提交
2
  { title: 'Service Search', path: '/service', icon: 'search' },
B
beiwei30 已提交
3 4 5 6 7
  {
    title: 'Service Governance',
    icon: 'edit',
    group: 'governance',
    items: [
马金凯 已提交
8 9 10 11 12
      { title: 'Routing Rule', path: '/governance/routingRule' },
      { title: 'Dynamic Config', path: '/governance/config' },
      { title: 'Access Control', path: '/governance/access' },
      { title: 'Weight Adjust', path: '/governance/weight' },
      { title: 'Load Balance', path: '/governance/loadbalance' }
B
beiwei30 已提交
13 14
    ]
  },
N
nzomkxia 已提交
15 16
  { title: 'Service Test', path: '/test', icon: 'code', badge: 'feature' },
  { title: 'Service Mock', path: '/mock', icon: 'build', badge: 'feature' }
B
beiwei30 已提交
17 18 19
]

export default Menu