GetValueStore

Get the value store

getValueStore(): Store
const TsForm = createForm({
    name: "user",
    initialValues: {
        name: "Leandro",
    },
});

TsForm.field("name").setValue("123");
TsForm.field("name").getValueStore().get()
//123