k-line/index.html

22 lines
493 B
HTML
Raw Normal View History

2025-02-12 10:59:45 +00:00
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-02-13 06:30:03 +00:00
<title>股票信息</title>
2025-02-12 10:59:45 +00:00
<style>
body{
margin: 0;
padding: 0;
overflow: hidden;
2025-02-13 06:30:03 +00:00
background-color: var(--my-common-bgc-2);
2025-02-12 10:59:45 +00:00
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>