This is fork of version 0.15 of the yew-router
.
The main motivation behind the fork is the lack of nested router support in the 0.16 release. This fork ports the 0.15
router from Yew 0.18 to Yew 0.19 and renames it to yew-router-nested
.
Also see: yewstack/yew#1853
You can use this by patching the yew-router
dependency in your Cargo.toml
:
[dependencies]
yew-router-nested = "0.16"
If you want to keep yew_router
as the module name, you can use:
[dependencies]
yew-router = { version = "0.16", package="yew-router-nested" }
While this should mostly be a drop-in replacement for the 0.15 router, there may be a few steps required to migrate:
- The name of the crate is
yew-router-nested
. - When using
Switch
inProperties
, it may be necessary to also make the types implementing switchPartialEq
andClone
. This is required due to the new requirement of Properties to implementPartialEq
.