Releases: vuejs/vuex-router-sync
Releases · vuejs/vuex-router-sync
v6.0.0-rc.1
v5.0.0
v4.1.0
- Now includes TypeScript definition. (@snaptopixel)
v4.0.0
Breaking Change
- The
router/ROUTE_CHANGED
mutation now sends the payload in the shape of{ to, from }
instead of just theto
route. Although this is a breaking change, no actions are required unless you are explicitly listening to this mutation in a custom plugin.
New
-
The
route
state now exposes themeta
property of the current route (@scottbedard via #32) -
The
route
state now exposes thefrom
route (@predhme via #36) -
You can now configure a custom route module name (@vinicius73 via #37):
sync(store, router, { moduleName: 'RouteModule' })