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

31 lines
685 B
HTML

<!doctype html>
<html lang="en">
<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">
import { createApp } from 'vue'
import { Repl } from './dist/vue-repl'
import Monaco from './dist/monaco-editor'
createApp(Repl, {
editor: Monaco,
}).mount('#app')
</script>
</head>
<body>
<div id="app"></div>
</body>
</html>