03-forms/03-checkbox-list.tsx
Checkbox List
Example
Official Cake20 View example for checkbox list.
export const data = {
flavors: [] as string[],
};
export default () => (
<fieldset class="space-y-2">
<label>
<input type="checkbox" value="strawberry" bind={data.flavors} />
Strawberry
</label>
<label>
<input type="checkbox" value="chocolate" bind={data.flavors} />
Chocolate
</label>
<p>Selected: {data.flavors.join(", ")}</p>
</fieldset>
);