Files
uai-editor/index.html
2025-05-23 21:54:03 +08:00

22 lines
682 B
HTML
Raw Permalink 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, initial-scale=1.0"/>
<title>有爱文档UAI Editor</title>
<link rel="icon" href="/favicon.png" />
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
</head>
<body>
<div id="uai-editor" style="height: 100vh; border: solid 1px var(--uai-border-color)"></div>
<!-- <div id="uai-editor" style="height: 90vh; width: 90vw; overflow: hidden; border: solid 1px var(--uai-border-color)"></div> -->
<script type="module" src="/src/main.ts"></script>
</body>
</html>