30 lines
678 B
HTML
30 lines
678 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="zh">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>编辑器</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
||
|
<link rel="stylesheet" href="https://houtai.baidu.com/v2/csssdk">
|
||
|
<style>
|
||
|
html,
|
||
|
body,
|
||
|
.app-wrapper {
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="root" class="app-wrapper"></div>
|
||
|
<script src="https://houtai.baidu.com/v2/jssdk"></script>
|
||
|
<script src="index.js"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|