20CAKE20.JS
03-forms

Forms

8

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" />
);