diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-08-23 10:04:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-23 10:04:57 +0200 |
commit | 89837b8756590bd97b82450c6a445702f7ab5077 (patch) | |
tree | ca3d763976eab9d1541d68687e38c87bd11990ec /src/main.js | |
parent | a76e153bf1390237ab75969f40df3abfe6da0a75 (diff) | |
parent | 8dfa61884580a5966c0b48f5ce5dc16828f489c4 (diff) | |
download | puszcza-89837b8756590bd97b82450c6a445702f7ab5077.tar.gz puszcza-89837b8756590bd97b82450c6a445702f7ab5077.zip |
Merge pull request #1 from pniedzwiedzinski/develop
Add navigation and files
Diffstat (limited to 'src/main.js')
-rw-r--r-- | src/main.js | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/main.js b/src/main.js index 63eb05f..aea7de4 100644 --- a/src/main.js +++ b/src/main.js @@ -1,8 +1,14 @@ -import Vue from 'vue' -import App from './App.vue' +import Vue from "vue"; +import VueRouter from "vue-router"; -Vue.config.productionTip = false +import { router } from "./router/index"; +import App from "./App.vue"; + +Vue.use(VueRouter); + +Vue.config.productionTip = false; new Vue({ render: h => h(App), -}).$mount('#app') + router +}).$mount("#app"); |