Coder Social home page Coder Social logo

micro-app-view's Introduction

micro-app-view

微前端组件库的Vue实现,可以使用类似iframe的方式加载子应用

安装

yarn add micro-app-view
or
npm install micro-app-view

使用

import MicroAppView from 'micro-app-view'
Vue.use(MicroAppView)
<micro-app-view name="app1" path="/app1" :query="{ id:1 }" />

子应用修改

main.js

let app
export async function bootstrap() {
  console.log('vue app1 bootstrap')
}
export async function mount(props) {
  console.log('app1 mount', props)
  app = new Vue({
    render: (h) => h(App),
    props: props,
    router,
    store
  }).$mount(`#app1)
}
export async function unmount() {
  console.log('app1 unmount', app)
  app.$destroy()
  app = null
}

vue.config.js

const packageName = 'app1'
config.output.library = packageName
config.output.libraryTarget = 'umd'
config.output.jsonpFunction = `webpackJsonp_${packageName}`

micro-app-view's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.