I am trying to create a simple dropdown list on riot. The issue is that I can't see the title and value from the dropdown. My code is:
<select id="inputType" >
<option each={item in items} value={item.value} >{item.title}</option>
</select>
I am trying to create a simple dropdown list on riot. The issue is that I can't see the title and value from the dropdown. My code is:
<select id="inputType" >
<option each={item in items} value={item.value} >{item.title}</option>
</select>