Files
tauri-meeting/popup-window.html

24 lines
600 B
HTML
Raw Normal View History

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="transparent" />
<link rel="icon" href="icons/64x64.png" type="image/png" />
<title>弹窗窗口</title>
<style>
body {
width: 100vw;
height: 100vh;
padding: 0;
margin: 0;
overflow: hidden;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="./src/other_pages/popup-window/main.ts"></script>
</body>
</html>