张恒

修改部分文案,修正路由中有重复的地方,导致控制台报错

...@@ -36,7 +36,7 @@ const menu = [{ ...@@ -36,7 +36,7 @@ const menu = [{
36 dialog.showMessageBox({ 36 dialog.showMessageBox({
37 title: '关于', 37 title: '关于',
38 type: 'info', 38 type: 'info',
39 - message: '程序使用electron搭建,程序制作Sky' 39 + message: '存放显示这个的信息是在,src/main/menu.js中,请自行修改'
40 }) 40 })
41 } 41 }
42 }] 42 }]
......
...@@ -51,12 +51,6 @@ export default new Router({ ...@@ -51,12 +51,6 @@ export default new Router({
51 name: 'Form', 51 name: 'Form',
52 component: () => import('@/views/form/index'), 52 component: () => import('@/views/form/index'),
53 meta: { title: '表单', icon: 'form' } 53 meta: { title: '表单', icon: 'form' }
54 - },
55 - {
56 - path: 'index',
57 - name: 'Form',
58 - component: () => import('@/views/form/index'),
59 - meta: { title: '表单', icon: 'form' }
60 } 54 }
61 ] 55 ]
62 }, 56 },
......