22 lines
621 B
HTML
22 lines
621 B
HTML
<!-- sidepanel/index.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>测试工具</title>
|
|
<link rel="stylesheet" href="style/style.css" />
|
|
</head>
|
|
<body>
|
|
<!-- 导航栏 -->
|
|
<nav class="navbar">
|
|
<button class="nav-button active">时间戳转换</button>
|
|
<button class="nav-button">任务清单</button>
|
|
<button id="close-panel-btn" class="close-button">X</button>
|
|
</nav>
|
|
<div id="app"></div>
|
|
|
|
<script src="../dist/bundle.js"></script>
|
|
</body>
|
|
</html>
|