mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
49 lines
1.1 KiB
HTML
49 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" style="font-size: 100px">
|
|
<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">
|
|
<link rel="icon" href="/favicon.png" type="image/png">
|
|
<title>Vue3 Playground</title>
|
|
<style>
|
|
.magic-ui-page {
|
|
overflow: hidden;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#app {
|
|
position: relative;
|
|
overflow: auto;
|
|
}
|
|
|
|
.magic-ui-container {
|
|
background-color: rgba(136, 136, 136, 0.5);
|
|
}
|
|
|
|
.action-area {
|
|
background-color: rgba(51, 153, 255, 0.5) !important;
|
|
}
|
|
</style>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/3.4.21/vue.global.prod.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/vue-demi"></script>
|
|
</head>
|
|
<body style="font-size: 14px">
|
|
<div id="app" class="in-editor"></div>
|
|
|
|
<script type="module" src="./main.ts"></script>
|
|
</body>
|
|
</html> |