SetError
Set the store error
setError(value: string): string
import TsNanoForm from "./nanoForm";
const formUser = TsNanoForm.getForm("user");
const { field } = formUser;
const { setError } = field("name");
setError("name required");
Set the store error
import TsNanoForm from "./nanoForm";
const formUser = TsNanoForm.getForm("user");
const { field } = formUser;
const { setError } = field("name");
setError("name required");