kt-template-online-playground/index.html
2026-05-08 14:30:56 +08:00

24 lines
512 B
HTML

<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue SFC Playground</title>
<style>
body {
margin: 0;
}
#app {
height: 100vh;
height: 100dvh;
}
</style>
<script type="module" src="./test/main.ts"></script>
</head>
<body>
<div id="app"></div>
</body>
</html>