2021-04-12 06:18:30 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
|
|
|
export let choices: string[];
|
|
|
|
export let value: number = 0;
|
|
|
|
</script>
|
|
|
|
|
2021-05-28 00:52:49 +02:00
|
|
|
<select bind:value class="form-select">
|
|
|
|
{#each choices as choice, idx}
|
|
|
|
<option value={idx}>{choice}</option>
|
|
|
|
{/each}
|
|
|
|
</select>
|