+
+
+
+ {{title}}
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/chameleon-client/src/routes.js b/chameleon-client/src/routes.js
index 52de28692..243d2b002 100644
--- a/chameleon-client/src/routes.js
+++ b/chameleon-client/src/routes.js
@@ -1,13 +1,13 @@
import VueRouter from "vue-router";
import Input from "./components/InputTab.vue";
-import ThreeD from "./components/3DTab.vue";
+import Threshold from "./components/ThresholdTab.vue";
import System from "./components/SystemTab.vue";
import Camera from "./components/CameraTab.vue";
const routes = [
{ path: '/', redirect: '/vision/input'},
{ path: '/vision/input', component: Input, name:'input' },
- { path: '/vision/3d', component: ThreeD ,name:'threshold'},
+ { path: '/vision/3d', component: Threshold ,name:'threshold'},
{path:'/settings/system', component: System },
{path:'/settings/camera', component: Camera}
]