Skip to content

Instantly share code, notes, and snippets.

@TitasGailius
Created March 23, 2018 17:37
Show Gist options
  • Save TitasGailius/4862448ef6f60038bbdfb57231659b30 to your computer and use it in GitHub Desktop.
Save TitasGailius/4862448ef6f60038bbdfb57231659b30 to your computer and use it in GitHub Desktop.
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