forked from Tencent/wepy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocument.html
More file actions
44 lines (42 loc) · 1.52 KB
/
document.html
File metadata and controls
44 lines (42 loc) · 1.52 KB
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
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>wepyjs - 小程序组件化开发框架</title>
<link rel="icon" href="favicon.ico">
<meta name="description" content="小程序组件化开发框架">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
</head>
<body>
<div style="position: absolute;z-index: 999;padding: 5px 0 0 350px;">如发现文档中的错误,请<a href="https://github.com/wepyjs/wepy/edit/master/docs/md/doc.md" target="_blank">点击这里</a>修改本文档,修改完成后请 pull request,我们会尽快合并、更新。</div>
<header>
<div class="container">
<nav class="a123">
<a href="./index.html">首页</a>
<a href="#api">API文档</a>
<a href="#changelog">CHANGELOG</a>
</nav>
</div>
</header>
<div id="app">Please wait...</div>
</body>
<script>
window.$docsify = {
el: '#app',
auto2top: true,
basePath: '../md/',
homepage: 'doc.md'
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.js"></script>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?14c98a4c2ac48bfa7a4c6e9bf797d125";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</html>