qiankun-fit/examples/main/multiple.js
2020-08-21 15:07:24 +08:00

20 lines
377 B
JavaScript

import { loadMicroApp } from '../../es';
const app1 = loadMicroApp(
{ name: 'react15', entry: '//localhost:7102', container: '#react15' },
{
sandbox: {
// strictStyleIsolation: true,
},
},
);
const app2 = loadMicroApp(
{ name: 'vue', entry: '//localhost:7101', container: '#vue' },
{
sandbox: {
// strictStyleIsolation: true,
},
},
);