<Svelector
bind:value={value}
options={[
"One",
"Two",
"Three"
]} />
<Svelector
bind:value={value}
options={[
{ text: "One", value: "1" },
{ text: "Two", value: "2" },
{ text: "Three", value: "3" }
]}
textProperty="text"
valueProperty="value" />