2
0
Files
fe.wfc.user/index.html
2024-12-06 21:29:44 +08:00

24 lines
735 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="zh-cmn-Hans">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="/vconsole.min.js"></script>
<script>
var vConsole = new VConsole({
// defaultPlugins: ['SYSTEM', 'CONSOLE', 'NETWORK']
});
// 如果需要在页面加载完成后才显示 vConsole可以监听 DOMContentLoaded 事件
document.addEventListener('DOMContentLoaded', function () {
vConsole.show();
});
</script>
<title>%VITE_APP_TITLE%</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>