41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>Mindmap Test Bench</title>
|
||
|
|
<style>
|
||
|
|
body { margin: 0; padding: 20px; font-family: sans-serif; }
|
||
|
|
#app { width: 100%; height: 600px; border: 1px solid #ccc; position: relative; overflow: hidden; }
|
||
|
|
</style>
|
||
|
|
<script type="importmap">
|
||
|
|
{
|
||
|
|
"imports": {
|
||
|
|
"@web/state": "../../state/src/index.js",
|
||
|
|
"@web/base": "../../base/src/index.js",
|
||
|
|
"@web/mindmap": "../src/index.js"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>Mindmap 测试靶场</h1>
|
||
|
|
<div id="app"></div>
|
||
|
|
|
||
|
|
<script type="module">
|
||
|
|
import { Mindmap } from '@web/mindmap';
|
||
|
|
window.testExports = { Mindmap };
|
||
|
|
|
||
|
|
const mm = new Mindmap({
|
||
|
|
container: document.getElementById('app'),
|
||
|
|
data: {
|
||
|
|
text: '思维导图核心',
|
||
|
|
children: [
|
||
|
|
{ text: '架构设计' },
|
||
|
|
{ text: '性能优化' }
|
||
|
|
]
|
||
|
|
}
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|