1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! All available routes within this application for fragment based routing use yew_router::prelude::*; #[derive(Clone, Switch)] pub enum RouterTarget { #[to = "/#error"] Error, #[to = "/#loading"] Loading, #[to = "/#login"] Login, #[to = "/#content"] Content, }