03-forms/06-multiple-select.tsx
Multiple Select
Example
Official Cake20 View example for multiple select.
export const data = {
flavors: [] as string[],
};
export default () => (
<select class="rounded border p-2" bind={data.flavors} multiple>
<option value="strawberry">Strawberry</option>
<option value="chocolate">Chocolate</option>
<option value="vanilla">Vanilla</option>
</select>
);