# Navigation

# Usage

// Global installation
import NavigationInstaller from "vue-elder-navigation";
//...
Vue.use(NavigationInstaller);

// Local installation
import { NavigationComponent, setup } from "vue-elder-navigation";

//...
components: {
  NavigationComponent;
}

# Slots

  • default
  • before

# Props


# Example

<navigation-component
  :logo="{ src: 'https://elder.no/wp-content/uploads/sites/14/2019/10/logo-e1574108269330.png', height: 40}"
  :items="[{ label: 'Home', action: '#' }, { label: 'About', action: '#' }]"
></navigation-component>
Last Updated: 1/5/2020, 7:34:27 PM