dioxus/examples/link.rs

47 lines
1.1 KiB
Rust
Raw Normal View History

2022-12-16 10:55:20 +00:00
#![allow(non_snake_case)]
2022-01-18 01:19:12 +00:00
use dioxus::prelude::*;
2022-12-16 10:55:20 +00:00
use dioxus_router::prelude::*;
2022-01-18 01:19:12 +00:00
fn main() {
dioxus_desktop::launch(app);
2022-01-18 01:19:12 +00:00
}
fn app(cx: Scope) -> Element {
2023-04-12 18:19:01 +00:00
use_router(cx, &RouterConfiguration::default, &|| {
2022-12-16 10:55:20 +00:00
Segment::content(comp(Home)).fixed("settings", comp(Settings))
});
2022-01-18 01:19:12 +00:00
cx.render(rsx! (
2022-01-18 01:20:36 +00:00
div {
2022-01-18 01:19:12 +00:00
p {
a { href: "http://dioxuslabs.com/", "Default link - links outside of your app" }
2022-01-18 01:19:12 +00:00
}
p {
a {
href: "http://dioxuslabs.com/",
2022-01-18 06:52:14 +00:00
prevent_default: "onclick",
onclick: |_| println!("Hello Dioxus"),
2022-03-05 20:25:09 +00:00
"Custom event link - links inside of your app",
}
}
}
div {
2022-12-16 10:55:20 +00:00
Outlet { }
p { "----"}
ul {
Link { target: "/", li { "Router link to home" } },
Link { target: "/settings", li { "Router link to settings" } },
2022-01-18 01:19:12 +00:00
}
}
))
}
2022-12-16 10:55:20 +00:00
fn Home(cx: Scope) -> Element {
render!(h1 { "Home" })
}
fn Settings(cx: Scope) -> Element {
render!(h1 { "Settings" })
}