mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 18:57:38 +00:00
30 lines
850 B
HTML
30 lines
850 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link
|
|
rel="icon"
|
|
type="image/jpeg"
|
|
href="https://lf1-cdn-tos.bytescm.com/obj/static/visactor-site/img/visactor/vtable-icon.svg"
|
|
/>
|
|
<link rel="stylesheet" href="./style.css" />
|
|
<title>VTable demos</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="sidebar" id="sidebar"></div>
|
|
<div class="content">
|
|
<div id="chartContainer">
|
|
<div id="vTable" style="position: relative; height: 100%; width: 100%; overflow: hidden"></div>
|
|
</div>
|
|
<div id="article"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
<script src="./main.ts" type="module"></script>
|
|
</html>
|