18 lines
522 B
HTML
18 lines
522 B
HTML
<template name="baseSelect">
|
|
<select
|
|
id="{{this.id}}"
|
|
class="{{this.class}}"
|
|
name="{{this.name}}"
|
|
multiple="{{#if this.multiple}}multiple{{/if}}"
|
|
{{this.tagAttributes}}
|
|
>
|
|
{{>UI.contentBlock}}
|
|
{{#each item in (reactive this.items)}}
|
|
<option
|
|
value="{{item.value}}"
|
|
selected="{{#if eq item.value (reactive this.value)}}selected{{/if}}"
|
|
>{{item.label}}</option>
|
|
{{/each}}
|
|
</select>
|
|
</template>
|