GetErrorStore
Get the error value
getErrorStore(): Store
const TsForm = createForm({
name: "user"
});
TsForm.field("name").setError("invalid");
TsForm.field("name").getErrorStore().get()
//invalid
Get the error value
const TsForm = createForm({
name: "user"
});
TsForm.field("name").setError("invalid");
TsForm.field("name").getErrorStore().get()
//invalid