mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-12-02 01:49:59 +00:00
29 lines
624 B
HTML
29 lines
624 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<meta charSet="utf-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0" />
|
||
|
|
<link rel="icon" type="image/png" sizes="32x32"
|
||
|
|
href="https://lf3-static.bytednsdoc.com/obj/eden-cn/vhaeh7vhabf/favicon-32x32.png">
|
||
|
|
|
||
|
|
<title>Midscene Visualizer</title>
|
||
|
|
{{css}}
|
||
|
|
|
||
|
|
{{js}}
|
||
|
|
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<!-- it should be replaced by the actual content -->
|
||
|
|
{{dump}}
|
||
|
|
|
||
|
|
<div id="app" style="width: 100vw; height: 100vh;"></div>
|
||
|
|
<script>
|
||
|
|
console.log(midSceneVisualizer);
|
||
|
|
midSceneVisualizer.default.mount('app');
|
||
|
|
</script>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|