mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-24 05:03:06 +00:00
35 lines
829 B
Rust
35 lines
829 B
Rust
#![allow(non_snake_case, unused)]
|
|
use dioxus::prelude::*;
|
|
use dioxus_router::prelude::*;
|
|
|
|
// ANCHOR: route
|
|
#[derive(Routable, Clone)]
|
|
#[rustfmt::skip]
|
|
enum Route {
|
|
// segments that start with : are dynamic segments
|
|
#[route("/blog/:name")]
|
|
BlogPost {
|
|
// You must include dynamic segments in child variants
|
|
name: String,
|
|
},
|
|
#[route("/document/:id")]
|
|
Document {
|
|
// You can use any type that implements FromStr
|
|
// If the segment can't be parsed, the route will not match
|
|
id: usize,
|
|
},
|
|
}
|
|
|
|
// Components must contain the same dynamic segments as their corresponding variant
|
|
#[inline_props]
|
|
fn BlogPost(cx: Scope, name: String) -> Element {
|
|
todo!()
|
|
}
|
|
|
|
#[inline_props]
|
|
fn Document(cx: Scope, id: usize) -> Element {
|
|
todo!()
|
|
}
|
|
// ANCHOR_END: route
|
|
|
|
fn main() {}
|