mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-14 16:37:14 +00:00
57 lines
1.2 KiB
Rust
57 lines
1.2 KiB
Rust
use dioxus::prelude::*;
|
|
use dioxus_web::Config;
|
|
use web_sys::window;
|
|
|
|
fn app() -> Element {
|
|
rsx! {
|
|
div { h1 { "thing 1" } }
|
|
div { h2 { "thing 2" } }
|
|
div {
|
|
h2 { "thing 2" }
|
|
"asd"
|
|
"asd"
|
|
Bapp {}
|
|
}
|
|
{(0..10).map(|f| rsx!{
|
|
div {
|
|
"thing {f}"
|
|
}
|
|
})}
|
|
}
|
|
}
|
|
|
|
#[allow(non_snake_case)]
|
|
fn Bapp() -> Element {
|
|
rsx! {
|
|
div { h1 { "thing 1" } }
|
|
div { h2 { "thing 2" } }
|
|
div {
|
|
h2 { "thing 2" }
|
|
"asd"
|
|
"asd"
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
console_error_panic_hook::set_once();
|
|
tracing_wasm::set_as_global_default();
|
|
|
|
let mut dom = VirtualDom::new(app);
|
|
let _ = dom.rebuild(&mut dioxus_core::NoOpMutations);
|
|
|
|
let pre = dioxus_ssr::pre_render(&dom);
|
|
tracing::trace!("{}", pre);
|
|
|
|
// set the inner content of main to the pre-rendered content
|
|
window()
|
|
.unwrap()
|
|
.document()
|
|
.unwrap()
|
|
.get_element_by_id("main")
|
|
.unwrap()
|
|
.set_inner_html(&pre);
|
|
|
|
// now rehydrate
|
|
dioxus_web::launch_with_props(app, (), Config::new().hydrate(true));
|
|
}
|