Provides accessible menu behavior
npm install @polymer/iron-menu-behavior


IronMenuBehavior, IronMenubarBehaviorIronMenuBehavior and IronMenubarBehavior implement accessible menu and
menubar behaviors.
See: Documentation,
Demo.
```
npm install --save @polymer/iron-menu-behavior
`js
import {PolymerElement} from '@polymer/polymer/polymer-element.js';
import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import {IronMenuBehavior} from '@polymer/iron-menu-behavior/iron-menu-behavior.js';
class SimpleMenu extends mixinBehaviors(IronMenuBehavior, PolymerElement) {
static get template() {
return html
;
}
}
customElements.define('simple-menu', SimpleMenu);
`
Then, in your HTML:
`html
Item 0
Item 1
Item 2 (disabled)
`
If you want to send a PR to this element, here are the instructions for running
the tests and demo locally:
`sh`
git clone https://github.com/PolymerElements/iron-menu-behavior
cd iron-menu-behavior
npm install
npm install -g polymer-cli
`sh`
polymer serve --npm
open http://127.0.0.1:
`sh``
polymer test --npm