forked from lakb248/vue-pull-refresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.05 KB
/
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
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue Component</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection"content="telephone=no, email=no">
<meta name="HandheldFriendly" content="true">
<style>
* {
margin: 0px;
padding: 0px;
}
.content {
height: 200px;
background-color: blue;
}
</style>
</head>
<body>
<div id="container">
<vue-pull-refresh :on-refresh="onRefresh" >
<div class="content"></div>
</vue-pull-refresh>
</div>
<script type="text/javascript" src="/build/build.js"></script>
</body>
</html>