mirror of
https://github.com/KwiTsukasa/kt-template-online-playground.git
synced 2026-05-27 16:45:45 +08:00
24 lines
512 B
HTML
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>
|