forked from creatshare/vue-mui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.07 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
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>vue-mui</title>
<meta name="keywords" content="vuejs,vue,vue-mui,vuecomponents,vue组件,vue移动组件"/>
<meta name="description" content="mobile components for Vue.js"/>
<link rel="stylesheet" href="./dist/reset.css">
<link rel="stylesheet" href="./dist/mui.min.css">
<script type="text/javascript" src="http://apps.bdimg.com/libs/fastclick/1.0.0/fastclick.min.js"></script>
<script type="text/javascript">
(function(){
if ('addEventListener' in document) {
document.addEventListener('DOMContentLoaded', function() {
FastClick.attach(document.body);
}, fals;
}
}())
</script>
</head>
<body>
<app></app>
<script type="text/javascript" src="./dist/test.js"></script>
<script type="text/javascript" src="./example/lib/smooth-scroll.min.js"></script>
<script>
(function(){
document.body.addEventListener('touchstart', function(){});
smoothScroll.init();
}())
</script>
</body>
</html>