I'm a beginner. I tried to using yew-router with confirming the below tutorial. https://yew.rs/docs/next/concepts/router
but, it's not working. I'm getting the below error message.
panicked at 'called Option::unwrap()
on a None
value', src/main.rs:17:37
A part of my code is below. yew's version is 0.20, and yew-router's version is 0.17.
use yew::prelude::*;
use yew_router::prelude::*;
#[derive(Debug, Clone, PartialEq, Routable)]
enum Route {
#[at("/")]
App,
..
}
#[function_component(App)]
fn app() -> Html {
let navigator = use_navigator().unwrap();
..
}
I know that Navigator is None, but I don't know why is that and how to solve it.
As below, this issue is resolved after adding tag in parent component.(main.rs)
The top page is shown below.(home_page.rs)
In this example, when you click
sample
, you see sample page.