diff --git a/chameleon-client/src/App.vue b/chameleon-client/src/App.vue index 6b4a01e1d..aa01a853d 100644 --- a/chameleon-client/src/App.vue +++ b/chameleon-client/src/App.vue @@ -18,13 +18,22 @@ Settings - System - Cameras + System + Cameras -
Header
+
+ + + + + + + + +
@@ -43,11 +52,14 @@ + + \ No newline at end of file diff --git a/chameleon-client/src/components/SystemTab.vue b/chameleon-client/src/components/SystemTab.vue new file mode 100644 index 000000000..7701155d6 --- /dev/null +++ b/chameleon-client/src/components/SystemTab.vue @@ -0,0 +1,18 @@ + + + + + \ No newline at end of file diff --git a/chameleon-client/src/routes.js b/chameleon-client/src/routes.js index 48666d6ba..52de28692 100644 --- a/chameleon-client/src/routes.js +++ b/chameleon-client/src/routes.js @@ -1,11 +1,15 @@ import VueRouter from "vue-router"; import Input from "./components/InputTab.vue"; import ThreeD from "./components/3DTab.vue"; +import System from "./components/SystemTab.vue"; +import Camera from "./components/CameraTab.vue"; const routes = [ - { path: '/', redirect: '/vision/input' }, - { path: '/vision/input', component: Input }, - { path: '/vision/3d', component: ThreeD } + { path: '/', redirect: '/vision/input'}, + { path: '/vision/input', component: Input, name:'input' }, + { path: '/vision/3d', component: ThreeD ,name:'threshold'}, + {path:'/settings/system', component: System }, + {path:'/settings/camera', component: Camera} ] const router = new VueRouter({