I'm having problems understanding how to get the index (or the item) of the selected item in paper-dropdown-menu. At the moment I have an eventlistener whenever core-select is fired:
window.addEventListener('polymer-ready', function(e) {
var menu = document.querySelector('paper-dropdown');
menu.addEventListener('core-select', function(e) {
console.log(getSelection());
});