fixed align in range and added contours tab

This commit is contained in:
ori agranat
2019-03-24 22:11:29 +02:00
parent e87f2a310d
commit fffb981f9f
5 changed files with 45 additions and 20 deletions

View File

@@ -3,13 +3,15 @@ import Input from "./components/InputTab.vue";
import Threshold from "./components/ThresholdTab.vue";
import System from "./components/SystemTab.vue";
import Camera from "./components/CameraTab.vue";
import Contours from "./components/contourTab.vue";
const routes = [
{ path: '/', redirect: '/vision/input'},
{ path: '/vision/input', component: Input, name:'input' },
{ path: '/vision/threshold', component: Threshold ,name:'threshold'},
{path:'/settings/system', component: System },
{path:'/settings/camera', component: Camera}
{path:'/settings/camera', component: Camera},
{path:'/settings/contours', component: Contours}
]
const router = new VueRouter({