+
diff --git a/client/src/main.js b/client/src/main.js
index 59f4122..ca5c0fc 100644
--- a/client/src/main.js
+++ b/client/src/main.js
@@ -2,6 +2,7 @@ import Vue from 'vue'
import VueResource from 'vue-resource'
import App from './App.vue'
+import router from './router'
Vue.config.productionTip = false
@@ -9,4 +10,5 @@ Vue.use(VueResource)
new Vue({
render: h => h(App),
+ router,
}).$mount('#app')