Struct dioxus_web::WebConfig [−][src]
pub struct WebConfig { /* fields omitted */ }Expand description
Configuration for the WebSys renderer for the Dioxus VirtualDOM.
This struct helps configure the specifics of hydration and render destination for WebSys.
Example
ⓘ
fn main() {
dioxus::web::launch(App, |cfg| cfg.hydrate(true).root_name("myroot"))
}Implementations
Enable SSR hydration
This enables Dioxus to pick up work from a pre-renderd HTML file. Hydration will completely skip over any async work and suspended nodes.
Dioxus will load up all the elements with the dio_el data attribute into memory when the page is loaded.
Set the name of the element that Dioxus will use as the root.
This is akint to calling React.render() on the element with the specified name.
Set the name of the element that Dioxus will use as the root.
This is akint to calling React.render() on the element with the specified name.
