3.0.0 • Published 6 years ago

gb-menu v3.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

gb-menu

Add to application

const items: Item[] = [
  {
    items: [{ text: 'a1' }, { text: 'a2' }], text: 'top a'
  },
  {
    items: [
      { text: 'b1', items: [{ text: 'b1a' }, { text: 'b1b' }] },
      { text: 'b2' },
    ],
    text: 'top b'
  },
  {
    items: [{ text: 'c1' }, { text: 'c2' }],
    text: 'top c'
  }
];

new NavBar(items).run(document.getElementById('navbar')!);