diff --git a/chameleon-client/src/App.vue b/chameleon-client/src/App.vue
index 507480493..d61b25885 100644
--- a/chameleon-client/src/App.vue
+++ b/chameleon-client/src/App.vue
@@ -3,14 +3,14 @@
-
+
+
+
+
+
+
+
+ Camera 1
+
+
+
@@ -61,7 +72,12 @@ export default {
color: #2c3e50;
}
-.layout-con{
+#camera, #main-layout {
+ background-color: #272e35;
+ padding: 100px 30px 30px 30px;
+}
+
+.layout{
height: 100%;
width: 100%;
}
diff --git a/chameleon-client/src/components/3DTab.vue b/chameleon-client/src/components/3DTab.vue
new file mode 100644
index 000000000..238efd43c
--- /dev/null
+++ b/chameleon-client/src/components/3DTab.vue
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/chameleon-client/src/components/Settings.vue b/chameleon-client/src/components/Settings.vue
deleted file mode 100644
index d0906a5ed..000000000
--- a/chameleon-client/src/components/Settings.vue
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/chameleon-client/src/components/Vision.vue b/chameleon-client/src/components/Vision.vue
deleted file mode 100644
index f7bf2f52d..000000000
--- a/chameleon-client/src/components/Vision.vue
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/chameleon-client/src/main.js b/chameleon-client/src/main.js
index f1f63ccfa..264243897 100644
--- a/chameleon-client/src/main.js
+++ b/chameleon-client/src/main.js
@@ -2,7 +2,7 @@ import Vue from 'vue'
import App from './App.vue'
import VueRouter from 'vue-router'
import iView from 'iview';
-//import 'iview/dist/styles/iview.css'
+import router from "./routes";
import '../theme/index.less';
Vue.use(VueRouter);
@@ -11,5 +11,6 @@ Vue.use(iView);
Vue.config.productionTip = false
new Vue({
+ router,
render: h => h(App)
}).$mount('#app')
diff --git a/chameleon-client/src/routes.js b/chameleon-client/src/routes.js
new file mode 100644
index 000000000..1333ed4fc
--- /dev/null
+++ b/chameleon-client/src/routes.js
@@ -0,0 +1,15 @@
+import VueRouter from "vue-router";
+import Input from "./components/InputTab.vue";
+import ThreeD from "./components/3DTab.vue";
+
+const routes = [
+ { path: '/', redirect: '/input' },
+ { path: '/input', component: Input },
+ { path: '/3d', component: ThreeD }
+]
+
+const router = new VueRouter({
+ routes // short for `routes: routes`
+})
+
+export default router;
\ No newline at end of file
diff --git a/chameleon-client/theme/index.less b/chameleon-client/theme/index.less
index 16b61c71e..6f6f81770 100644
--- a/chameleon-client/theme/index.less
+++ b/chameleon-client/theme/index.less
@@ -1,4 +1,5 @@
@import '../node_modules/iview/src/styles/index.less';
+
@primary-color: #ff0000;
@link-color : #ff0000;
\ No newline at end of file