Minimalistic responsive navigation bar that renders routes of vue-router.
View the demo.
You need to have vue-router installed in order for vue-router-nav to work.
npm install vue-router-nav --save
import RouterNav from 'vue-router-nav'
Vue.use(RouterNav)
<template>
<div id="app">
<router-nav/>
<router-view/>
</div>
</template>
<script>
export default {
name: 'app'
}
</script>