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