vuex-router-sync icon indicating copy to clipboard operation
vuex-router-sync copied to clipboard

Effortlessly keep vue-router and vuex store in sync.

Results 12 vuex-router-sync issues
Sort by recently updated
recently updated
newest added

```typescript import { Route } from "vue-router"; @Watch("route") onRouteChanged(currRoute: Route) { if (currRoute.meta.parentRoute) { // got ts error at this line saying: 'Property 'from' does not exist on type 'Route'.'...