SetValue
Set the store value
setValue(value: string): string
import TsNanoForm from "./nanoForm";
const formUser = TsNanoForm.getForm("user");
const { field } = formUser;
const { setValue } = field("name");
setValue("John Doe");
Set the store value
import TsNanoForm from "./nanoForm";
const formUser = TsNanoForm.getForm("user");
const { field } = formUser;
const { setValue } = field("name");
setValue("John Doe");