Skip to main content

options

Description

specifies a set of data items that will be used as MultiCombo options

Type

array

Example

<script>
const dataset = [
{id:1, name:"First option"},
{id:2, name:"Second option"},
{id:3, name:"Third option"}
]
</script>

<MultiCombo options={dataset} values={[1,2]} />

Details

It is also possible to put data in a separate file and specify the name of the data set as a value of the options property of MultiCombo:

userlist.js
export const users = [
{id:1, name:"name1"},
{id:2, name:"name2"}
]
App.svelte
<script>
import { MultiCombo } from "@wx/svelte-core";
import { users } from "../your_data/userlist";
</script>

<MultiCombo options={users} values={[1,2]}/>

Related article: Loading options

Related sample: MultiCombo