vue-router-nav icon indicating copy to clipboard operation
vue-router-nav copied to clipboard

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

trafficstars

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>