bugfix for Settings where page moved down and url is lowercase

This commit is contained in:
ori agranat
2019-10-24 21:27:49 +03:00
parent 4577f5de32
commit 0ce7d7465c
10 changed files with 15 additions and 14 deletions

View File

@@ -11,15 +11,15 @@ export default new Router({
routes: [
{
path: '/',
redirect:'/Vision'
redirect:'/vision'
},
{
path: '/Vision',
path: '/vision',
name: 'Vision',
component: lazyLoad('Camera')
},
{
path: '/Settings',
path: '/settings',
name: 'Settings',
component: lazyLoad('Settings')
}