# Select
The select component is a type of input where a user can choose one or multiple options from a list. It is used in forms, where a user is submitting data.
# Single Select
A single select should be used when all of the options within the list are mutually exclusive.
- Select one value
<z-select
single
placeholder="Select one value"
:options="[1,2,3]"
/>
# Multi Select
A multi select should be used when the options within the list can be mutually inclusive.
- Select multiple values
<z-select
placeholder="Select multiple values"
:options="[1,2,3]"
/>