dioxus/examples/error_handle.rs

26 lines
414 B
Rust
Raw Normal View History

use dioxus::{dioxus_core::CapturedError, prelude::*};
fn main() {
launch_desktop(app);
}
2024-01-15 21:06:05 +00:00
fn app() -> Element {
2024-01-16 19:18:46 +00:00
rsx! {
2023-11-08 00:24:07 +00:00
ErrorBoundary {
2024-01-16 19:18:46 +00:00
handle_error: |error: CapturedError| rsx! {"Found error {error}"},
2024-01-14 05:12:21 +00:00
DemoC { x: 1 }
}
2024-01-14 05:12:21 +00:00
}
2022-11-16 09:13:39 +00:00
}
#[component]
fn DemoC(x: i32) -> Element {
2023-11-08 00:24:07 +00:00
let result = Err("Error");
result.throw()?;
2024-01-16 19:18:46 +00:00
rsx! {
h1 { "{x}" }
}
}