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