990 B
990 B
| title | description | source | primitive |
|---|---|---|---|
| Select | Displays a list of options for the user to pick from—triggered by a button. | apps/www/src/lib/registry/default/ui/select | https://www.radix-vue.com/components/select.html |
Installation
npx shadcn-vue@latest add select
Usage
<script setup lang="ts">
import {
Select,
SelectContent,
SelectGroup,
SelectItem,
SelectLabel,
SelectTrigger,
SelectValue,
} from '@/components/ui/select'
</script>
<template>
<Select>
<SelectTrigger>
<SelectValue placeholder="Select a fruit" />
</SelectTrigger>
<SelectContent>
<SelectGroup>
<SelectLabel>Fruits</SelectLabel>
<SelectItem value="apple">
Apple
</SelectItem>
</SelectGroup>
</SelectContent>
</Select>
</template>