pub fn NovaForm<F, ServFn, L, K>(
props: NovaFormProps<F, ServFn, L, K>,
) -> impl IntoViewwhere
F: Default + Clone + Serialize + Debug + 'static,
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
§Required Props
- on_submit: [
Action<ServFn, Result<(), ServerFnError>>] - bind:
impl Into<QueryString> - bind_meta_data:
impl Into<QueryString> - i18n:
I18nContext<L, K> - children:
Children
§Optional Props
- form_data: [
F] - _arg:
PhantomData<ServFn> - render:
bool