When doing the following, the handle prop does not update for BlogPage each time a new navigation happens unless a full page refresh occurs. I can confirm this by console logging the value of the handle prop inside of an effect. This means when visiting a different page on the same route, like /blog/hello first and /blog/yo second via a Link element (without full page refresh), it will still display the /blog/hello page even when the URL changes - it does not update the information because the handle doesn't change meaning there are no cascading changes.
Looks like this:
#[nest("/blog")]
#[route("/:handle")]
BlogPage { handle: String },
How can it update whenever navigation happens without full page refresh? Thanks.