19 lines
471 B
HTML
19 lines
471 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<link rel="icon" href="/favicon.ico">
|
||
|
|
<title>案例管理系统</title>
|
||
|
|
|
||
|
|
<!-- 加载运行时配置(必须在其他脚本之前加载) -->
|
||
|
|
<script src="/app-config.js"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="app"></div>
|
||
|
|
|
||
|
|
<!-- ES Module 入口 -->
|
||
|
|
<script type="module" src="/src/main.ts"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|