vue-nested-menu is a simple functional mobile nested menu UI component with smooth slide animation.
drill down grid using jquery, drill down in html, vuejs dropdown menu, mobile friendly menu, vue multi level menu, vue sidebar menu tutorial, vuetify menu submenu
How to make use of it:
Installation:
$ yarn add vue-nested-menu
Usage
<div id="app"> <vue-nested-menu :source="menu"></vue-nested-menu> </div>
import VueNestedMenu from 'vue-nested-menu'; Vue.use(VueNestedMenu) new Vue({ el: '#app', data: { menu: { title: '首頁', children: [ { title: `Today's Deals`, link: `/today`, children: [], }, { title: `Shop By Department`, children: [ { title: `Amazon Music`, link: `/music`, children: [], }, { title: `CDs and Vinyl`, link: `/cds`, children: [], }, ], }, ], }, }, });
<template> <vue-nested-menu :source="menu" /> </template> <script> export default { data() { return { menu: { // your menu data }, }; }, }; </script>
mobile friendly drop down menu, vue-nested-menu Plugin/Github
See Demo And Download
Official Website(guAnsunyata): Click Here
This superior jQuery/javascript plugin is developed by guAnsunyata. For extra advanced usage, please go to the official website.