Skip to content

Commit af46d0a

Browse files
调整帮助中心的菜单位置
1 parent 6dd452b commit af46d0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/gui/src/view/router/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ const routes = [
1414
{ path: '/server', component: Server },
1515
{ path: '/proxy', component: Proxy },
1616
{ path: '/setting', component: Setting },
17+
{ path: '/help', component: Help },
1718
{ path: '/plugin/node', component: Node },
1819
{ path: '/plugin/git', component: Git },
1920
{ path: '/plugin/pip', component: Pip },
2021
{ path: '/plugin/overwall', component: Overwall },
21-
{ path: '/help', component: Help },
2222
]
2323

2424
export default routes

packages/gui/src/view/router/menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ export default function createMenus (app) {
99
{ title: '加速服务', path: '/server', icon: 'thunderbolt' },
1010
{ title: '系统代理', path: '/proxy', icon: 'deployment-unit' },
1111
{ title: '设置', path: '/setting', icon: 'setting' },
12+
{ title: '帮助中心', path: '/help', icon: 'star' },
1213
{
1314
title: '应用',
1415
path: '/plugin',
1516
icon: 'api',
1617
children: plugins,
1718
},
18-
{ title: '帮助中心', path: '/help', icon: 'star' },
1919
]
2020
if (app.$global && app.$global.setting && app.$global.setting.overwall) {
2121
plugins.push({ title: '增强功能', path: '/plugin/overwall', icon: 'global' })

0 commit comments

Comments
 (0)