21 lines
633 B
JavaScript
21 lines
633 B
JavaScript
export default function createMenus (app) {
|
|
const plugins = [
|
|
{ title: 'NPM加速', path: '/plugin/node', icon: 'like' }
|
|
]
|
|
const menus = [
|
|
{ title: '首页', path: '/index', icon: 'home' },
|
|
{ title: '加速服务', path: '/server', icon: 'thunderbolt' },
|
|
{ title: '系统代理', path: '/proxy', icon: 'deployment-unit' },
|
|
{
|
|
title: '应用',
|
|
path: '/plugin',
|
|
icon: 'api',
|
|
children: plugins
|
|
}
|
|
]
|
|
if (app.$global && app.$global.setting && app.$global.setting.overwall) {
|
|
plugins.push({ title: '功能增强', path: '/plugin/overwall', icon: 'global' })
|
|
}
|
|
return menus
|
|
}
|