NovaForm

Function NovaForm 

Source
pub fn NovaForm<ServFn, L, K>(
    props: NovaFormProps<ServFn, L, K>,
) -> impl IntoView
where ServFn: DeserializeOwned + Serialize + ServerFn<InputEncoding = PostUrl, Error = NoCustomError, Output = ()> + 'static, <<ServFn::Client as Client<ServFn::Error>>::Request as ClientReq<ServFn::Error>>::FormData: From<FormData>, L: Locale + 'static, <L as FromStr>::Err: Debug, K: LocaleKeys<Locale = L> + 'static,
Expand description

Creates a new nova form. The form will automatically handle validation, serialization, and submission. This implicitly creates a HTML form tag that contains your entire form. It also provides a toolbar with a page select, locale select, preview button, and submit button.

§Required Props

§Optional Props