Created
March 23, 2018 17:37
-
-
Save TitasGailius/4862448ef6f60038bbdfb57231659b30 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from "vue" | |
import VueRouter from "vue-router" | |
import IndexPage from "./views/Index.vue" | |
Vue.use(VueRouter) | |
export default new VueRouter({ | |
mode: 'history', | |
routes: [ | |
{ | |
path: '/', | |
name: 'index', | |
component: IndexPage | |
} | |
] | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment