kt-template-online-playground/index.html

34 lines
738 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>KT-Template - Playground</title>
<style>
body {
margin: 0;
}
#app {
height: 100vh;
height: 100dvh;
}
.playground-shell {
display: flex;
flex-direction: column;
height: 100%;
min-height: 0;
}
.playground-shell > .vue-repl {
flex: 1;
min-height: 0;
}
</style>
<script type="module" src="./test/main.ts"></script>
</head>
<body>
<div id="app"></div>
</body>
</html>