UI Components > Menu


vue-router-nav 0.1


Minimalistic responsive navigation bar that renders routes of vue-router.
  • nav
  • router
  • vue
last commit 7 years ago
31
Stargazers

Watchers
31
Open issues
0
641
Downloads

Last 30 days
19
Releases
5
52
Final Score

Quality
68
Popularity
7
Maintenance
84

vue-router-nav

Minimalistic responsive navigation bar that renders routes of vue-router.

View the demo.

Dependencies

You need to have vue-router installed in order for vue-router-nav to work.

Install

npm install vue-router-nav --save

Usage

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>