mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
40 lines
1 KiB
Rust
40 lines
1 KiB
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus::desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
cx.render(rsx! (
|
|
div {
|
|
p {
|
|
a {
|
|
href: "http://dioxuslabs.com/",
|
|
"Default link - links outside of your app"
|
|
}
|
|
}
|
|
p {
|
|
a {
|
|
href: "http://dioxuslabs.com/",
|
|
prevent_default: "onclick",
|
|
onclick: |_| {
|
|
println!("Hello Dioxus");
|
|
},
|
|
"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" } },
|
|
}
|
|
}
|
|
}
|
|
))
|
|
}
|