1.19.3 • Published 7 months ago

@garfish/bridge-vue-v2 v1.19.3

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

"@garfish/bridge-vue-v2

NPM version

Vue bridge for vue v2 subapp. For more details, check here

Usage

// child app
import { vueBridge } from '@garfish/bridge-vue-v2';

function App() {
  return <div>content</div>;
}

export const provider = vueBridge({
  // rootComponent、loadRootComponent 传递一个即可。二者同时存在时,取 loadRootComponent 的返回值值作为 root component.
  rootComponent: App,
  loadRootComponent: ({ basename, dom, appName, props }) => {
    // do something async
    return Promise.resolve(App);
  },
  handleInstance: (vueInstance, { basename, dom, appName, props }) => {
    // you can do something in handleInstance after get the vueInstance
  },
  appOptions: ({ basename, dom, appName, props }) => {
    // pass the options to Vue Constructor. check https://vuejs.bootcss.com/api/#%E9%80%89%E9%A1%B9-%E6%95%B0%E6%8D%AE
    return {
      el: '#app',
      router: newRouter(basename),
      store,
    };
  },
});

Contributing

Credit

  • single-spa for community raised a hot wave of micro front-end solutions, and we refer to the implementation of the bridge part in single-spa and we think it is a good design, so we fork the code of the bridge implementation part and make some adjustments for the lifecycles in Garfish.
1.19.3

7 months ago

1.18.0

1 year ago

1.19.0

12 months ago

1.19.2

11 months ago

1.19.1

12 months ago

1.17.6

1 year ago

1.17.5

1 year ago

1.17.4

1 year ago

1.17.3

1 year ago

1.16.3

2 years ago

1.16.2

2 years ago

1.17.2

2 years ago

1.17.1

2 years ago

1.17.0

2 years ago

1.16.1

2 years ago

1.16.0

2 years ago

1.14.4

2 years ago

1.15.0

2 years ago

1.14.3

2 years ago

1.14.2

2 years ago

1.14.1

2 years ago

1.14.0

2 years ago

1.13.6

2 years ago

1.13.5

2 years ago

1.13.4

2 years ago

1.12.1

3 years ago

1.12.0

3 years ago

1.13.2

2 years ago

1.13.1

2 years ago

1.13.0

3 years ago

1.13.3

2 years ago

1.11.3

3 years ago

1.11.2

3 years ago

1.11.1

3 years ago

1.11.0

3 years ago

1.10.2

3 years ago

1.8.2

3 years ago

1.9.0

3 years ago

1.9.0-beta.1

3 years ago

1.10.1

3 years ago

1.10.0

3 years ago

1.8.1

3 years ago

1.8.0

3 years ago

1.7.2

3 years ago

1.7.1

3 years ago

1.7.0

3 years ago

1.6.0

3 years ago