@@ -38,7 +41,9 @@ export default {
Mission 2
diff --git a/src/router/index.js b/src/router/index.js
new file mode 100644
index 0000000..5b56169
--- /dev/null
+++ b/src/router/index.js
@@ -0,0 +1,22 @@
+import { createRouter, createWebHashHistory } from "vue-router"
+import fourCam from "../views/fourCam.vue";
+import Cam1Focus from "../views/Cam1Focus.vue";
+import Cam2Focus from "../views/Cam2Focus.vue";
+import test from "../views/test.vue";
+
+
+const routes = [
+ { path: '/', component: fourCam },
+ { path: '/1', component: Cam1Focus },
+ { path: '/2', component: Cam2Focus },
+ { path: '/test', component: test },
+]
+
+const router = createRouter({
+ // 4. Provide the history implementation to use. We
+ // are using the hash history for simplicity here.
+ history: createWebHashHistory(),
+ routes, // short for `routes: routes`
+})
+
+export default router
diff --git a/src/testDisplayComponents.vue b/src/testDisplayComponents.vue
new file mode 100644
index 0000000..943aa5d
--- /dev/null
+++ b/src/testDisplayComponents.vue
@@ -0,0 +1,31 @@
+
+
+
+ Below is the Connection component
+
+
+
+ Below is the Battery component
+
+
+
+
+
+
+
diff --git a/src/views/Cam1Focus.vue b/src/views/Cam1Focus.vue
new file mode 100644
index 0000000..4535e1e
--- /dev/null
+++ b/src/views/Cam1Focus.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/Cam2Focus.vue b/src/views/Cam2Focus.vue
new file mode 100644
index 0000000..fd80919
--- /dev/null
+++ b/src/views/Cam2Focus.vue
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/fourCam.vue b/src/views/fourCam.vue
new file mode 100644
index 0000000..bf9d7c6
--- /dev/null
+++ b/src/views/fourCam.vue
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/test.vue b/src/views/test.vue
new file mode 100644
index 0000000..df09912
--- /dev/null
+++ b/src/views/test.vue
@@ -0,0 +1,14 @@
+
+
+
+
+
\ No newline at end of file