03-forms/08-bind-options.tsx
Bind Options
Example
Official Cake20 View example for bind options.
export const data = {
name: "",
};
export default () => (
<input class="rounded border p-2" bind={data.name} clean="trim" update="change" />
);