【发布时间】:2022-06-10 20:37:08
【问题描述】:
我有以下代码在聚合物 3 中使用 vaadin 组合框,但它不起作用。
<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>
我明白,它与 and 有关,否则如果我只在项目中使用精确值,它就可以工作
【问题讨论】:
标签: combobox vaadin14 polymer-3.x