dioxus/examples/link.rs

62 lines
1.3 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 {
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 {
2023-07-26 01:14:48 +00:00
Router::<Route> {}
2022-01-18 01:19:12 +00:00
}
))
}
2022-12-16 10:55:20 +00:00
2023-06-02 17:33:47 +00:00
#[derive(Routable, Clone)]
#[rustfmt::skip]
enum Route {
#[layout(Header)]
#[route("/")]
Home {},
#[route("/settings")]
Settings {},
}
#[inline_props]
fn Header(cx: Scope) -> Element {
render! {
h1 { "Your app here" }
ul {
2023-07-24 18:57:56 +00:00
li { Link { to: Route::Home {}, "home" } }
li { Link { to: Route::Settings {}, "settings" } }
2023-06-02 17:33:47 +00:00
}
2023-07-26 01:14:48 +00:00
Outlet::<Route> {}
2023-06-02 17:33:47 +00:00
}
}
#[inline_props]
2022-12-16 10:55:20 +00:00
fn Home(cx: Scope) -> Element {
render!(h1 { "Home" })
}
2023-06-02 17:33:47 +00:00
#[inline_props]
2022-12-16 10:55:20 +00:00
fn Settings(cx: Scope) -> Element {
render!(h1 { "Settings" })
}