dioxus/examples/link.rs

41 lines
1 KiB
Rust
Raw Normal View History

2022-01-18 01:19:12 +00:00
use dioxus::prelude::*;
fn main() {
dioxus::desktop::launch(app);
}
fn app(cx: Scope) -> Element {
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/",
2022-03-05 20:25:09 +00:00
"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",
2022-01-18 01:19:12 +00:00
onclick: |_| {
println!("Hello Dioxus");
},
2022-03-05 20:25:09 +00:00
"Custom event link - links inside of your app",
}
}
}
div {
Router {
Route { to: "/", h1 { "Home" } },
Route { to: "/settings", h1 { "settings" } },
p { "----"}
ul {
Link { to: "/", li { "Router link to home" } },
Link { to: "/settings", li { "Router link to settings" } },
2022-01-18 01:19:12 +00:00
}
}
}
))
}