mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-20 20:33:02 +00:00
18 lines
472 B
Svelte
18 lines
472 B
Svelte
<script>
|
|
import { ComboBox, Button } from "carbon-components-svelte";
|
|
let selectedIndex = 1;
|
|
</script>
|
|
|
|
<ComboBox
|
|
titleText="Contact"
|
|
placeholder="Select contact method"
|
|
bind:selectedIndex
|
|
items="{[
|
|
{ id: '0', text: 'Slack' },
|
|
{ id: '1', text: 'Email' },
|
|
{ id: '2', text: 'Fax' },
|
|
]}"
|
|
/>
|
|
<br />
|
|
<Button on:click="{() => (selectedIndex = -1)}">Set to -1 (unselected)</Button>
|
|
<Button on:click="{() => (selectedIndex = 2)}">Set to 2 (Fax)</Button>
|