* ✨ split dynamic append patcher for proxy and non-proxy sandbox * ✨ change useLooseSandbox to sandbox.loose configuration * ♿ improve warning message for non-proxy environment
26 lines
450 B
HTML
26 lines
450 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>qiankun multiple demo</title>
|
|
<style>
|
|
body {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<button id="unmount">unmount</button>
|
|
<button id="mount">mount</button>
|
|
|
|
|
|
<div id="react15">react loading...</div>
|
|
<div id="vue">vue loading...</div>
|
|
|
|
</body>
|
|
</html>
|