2021-04-15 15:59:52 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
2021-03-31 15:40:11 +02:00
|
|
|
<script lang="typescript">
|
2021-05-18 16:32:29 +02:00
|
|
|
export let value: string | undefined = undefined;
|
2021-03-31 15:40:11 +02:00
|
|
|
export let selected = false;
|
|
|
|
</script>
|
|
|
|
|
2021-05-18 16:32:29 +02:00
|
|
|
<option {value} {selected}>
|
|
|
|
<slot />
|
|
|
|
</option>
|