Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 562 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 562 Bytes

Use

Add this to your Riot app markup

<rg-sidemenu sidemenu="{ sidemenu }"></rg-sidemenu>

and add this to your JavaScript

this.sidemenu = {
  header: 'Side Menu',
  expanded: false,
  items: [
    { text: 'Item 1', action: function () {} },
    { text: 'Item 2', action: function () {} }
  ]
};

To make the menu slide in and out toggle the expanded property

this.sidemenu.expanded = true|false;