I have following code to use vaadin combo box in polymer 3, but itis not working.
<vaadin-combo-box id ="select" placeholder="Please select">
<template is="dom-repeat" items="{{items}}" as="item">
<option value$="{{item.id}}"> {{item.type}}</option>
</vaadin-combo-box>
I understand, it has to do with and , else if I just use exact values in items, it works
You should not use
templatewithdom-repeat. There is internal logic that populates the popup withvaadin-item's based on items property (note, it does not useoption), so it should be enough if you do