diff --git a/client/src/App.vue b/client/src/App.vue
index 2da6827..2579ba5 100644
--- a/client/src/App.vue
+++ b/client/src/App.vue
@@ -2,7 +2,8 @@
Home |
- Posts
+ Posts |
+ QA
diff --git a/client/src/router/index.js b/client/src/router/index.js
index ab8ee60..a83440c 100644
--- a/client/src/router/index.js
+++ b/client/src/router/index.js
@@ -2,6 +2,7 @@ import Vue from 'vue'
import VueRouter from 'vue-router'
import Home from '../views/Home.vue'
import Posts from '../views/Posts.vue'
+import QAPage from '../views/QAPage'
Vue.use(VueRouter)
@@ -16,6 +17,11 @@ const routes = [
name: "Posts",
component: Posts,
},
+ {
+ path: "/qa",
+ name: "QA",
+ component: QAPage
+ },
]
const router = new VueRouter({
diff --git a/client/src/views/QAPage.vue b/client/src/views/QAPage.vue
new file mode 100644
index 0000000..685ef77
--- /dev/null
+++ b/client/src/views/QAPage.vue
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file