Svelector

Most basic usage

<Svelector
  bind:value={value}
  options={[
    "One",
    "Two",
    "Three"
  ]} />

Basic usage

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