mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 07:27:09 +08:00
49 lines
973 B
HTML
49 lines
973 B
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>Vue2 Playground</title>
|
|
<style>
|
|
html,body {margin: 0; padding: 0}
|
|
|
|
.magic-ui-page {
|
|
overflow: hidden;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#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>
|
|
</head>
|
|
<body style="font-size: 14px">
|
|
|
|
<div id="app"></div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/vue@2"></script>
|
|
|
|
<script type="module" src="./main.ts"></script>
|
|
</body>
|
|
</html> |