Files
medical-mall/index.html
2026-01-22 08:54:47 +08:00

24 lines
636 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>Mall</title>
<script>
// Uni-app 3.0 需要这个全局变量
window.process = { env: { NODE_ENV: 'development' } };
</script>
<!-- 入口脚本:通过 main.js 间接引入 main.uts确保 MIME 为 JS -->
<script type="module" src="/main.js"></script>
</head>
<body>
<div id="app">
<!-- 应用内容将由 uni-app 渲染 -->
</div>
<!-- 自动生成的脚本会在这里注入 -->
</body>
</html>