mirror of
https://gitee.com/cai_xiao_feng/lowflow-design.git
synced 2025-12-06 16:18:22 +08:00
24 lines
651 B
HTML
24 lines
651 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>lowflow-design</title>
|
|
<!-- element css cdn, if you use custom theme, remove it. -->
|
|
<!-- <link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/element-plus/dist/index.css"
|
|
/> -->
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
<script>
|
|
window.setInterval(function(){
|
|
new Function('debugger')();
|
|
}, 100);
|
|
</script>
|
|
</body>
|
|
</html>
|