-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·39 lines (37 loc) · 792 Bytes
/
index.html
File metadata and controls
executable file
·39 lines (37 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html>
<head>
<meta charset="utf8">
<title>组件客制化</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#target {
position: absolute;
width: 0;
height: 0;
border: none;
}
#container {
height: 400px;
overflow: hidden;
max-width: 300px;
}
body {
display: flex;
flex-direction: column;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<iframe id="target" name="target" src="target.html"></iframe>
<div id="app"></div>
<script src="dist/devtools.js"></script>
</body>
</html>