@signalchain/svelte-forms
v0.2.5
Published
Svelte forms library
Downloads
4
Readme
Svelte Forms
Based on svelte-forms-lib
https://github.com/tjinauyeung/svelte-forms-lib
[WIP]
const {
// observables state
form,
errors, // candidate for removal
touched, // candidate for removal
state, // candidate for removal
isValid, // candidate for removal
isSubmitting,
isValidating, // candidate for removal
// handlers
handleBlur, // candidate for removal
handleChange,
handleSubmit,
} = createForm({
initialValues: {
name: "",
email: "",
},
onSubmit,
})