forked from xiangyuecn/Recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 883 Bytes
/
index.html
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="shortcut icon" type="image/png" href="../icon.png">
<title>Recorder vue+webpack测试</title>
</head>
<body>
<div class="rootView"></div>
<script src="dist/index.js"></script>
<!-- 控制台组件 -->
<script src="https://cdn.bootcss.com/eruda/1.5.4/eruda.min.js"></script>
<script>eruda.init();</script>
<!-- 加载打赏挂件 -->
<script src="../zdemo.widget.donate.js"></script>
<script>
var donateView=document.createElement("div");
document.querySelector(".mainLog").appendChild(donateView);
DonateWidget({
log:function(msg){vue_main.reclog(msg)}
,mobElem:donateView
});
</script>
</body>
</html>