The easiest way to get up and running with vue-router is to use the version provided via CDN.
HTML:
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<div id="router-example">
<router-link to="/foo">Link to Foo route</router-link>
<router-view></router-view>
</div>
JavaScript (ES2015):
const Foo = { template: <div>This is the component for the Foo route</div> }
const router = new VueRouter({
routes: [
{ path: '/foo', component: Foo}
]
})
const routerExample = new Vue({
router
}).$mount('#router-example')