qiankun-fit/examples/main/multiple.html
Kuitos d537790f7d split dynamic append patcher for loose and strict sandbox (#995)
*  split dynamic append patcher for proxy and non-proxy sandbox

*  change useLooseSandbox to sandbox.loose configuration

*  improve warning message for non-proxy environment
2020-10-14 14:26:58 +08:00

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>