react-vue-router-sync

0.6.1 • Public • Published

[![npm][npm]][npm-url] [![node][node]][node-url] [![license][license]][license-url]

react-vue-router-sync

Sync location between React Router and Vue Router

Install

npm install --save react-vue-router-sync

Usage

The react-vue-router-sync is used to sync between router status for micro frontend apps.

import sync from 'react-vue-router-sync';
import { createBrowserHistory } from 'history';
import Vue from 'vue';
import VueRouter from 'vue-router';

Vue.use(VueRouter);
const vueRouter = new VueRouter({
  // ...
});

const history = createBrowserHistory({
  // ...
});

const unsync = sync(history, vueRouter);
history.push('/foo/bar');

console.log(vueRouter.currentRoute.fullPath); //  => /foo/bar
unsync(); // dispose sync

Package Sidebar

Install

npm i react-vue-router-sync

Weekly Downloads

1

Version

0.6.1

License

MIT

Unpacked Size

14 kB

Total Files

14

Last publish

Collaborators

  • bloody-ux