文档
选择

选择

显示一个选项列表,供用户选择,通过按钮触发。

安装

用法

import {
  Select,
  SelectContent,
  SelectItem,
  SelectTrigger,
  SelectValue
} from "@/components/ui/select";
<Select
  options={["Apple", "Banana", "Blueberry", "Grapes", "Pineapple"]}
  itemComponent={props => <SelectItem item={props.item}>{props.item.rawValue}</SelectItem>}
>
  <SelectTrigger>
    <SelectValue<string>>{state => state.selectedOption()}</SelectValue>
  </SelectTrigger>
  <SelectContent />
</Select>