-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-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="apple-touch-fullscreen" content="yes">
<meta name="format-detection" content="telephone=no, email=no">
<script src="./node_modules/vue/dist/vue.js"></script>
<script src="./dist/account/weex.bundle.js"></script>
<!--<script src="http://wechatfe.github.io/vconsole/lib/vconsole.min.js?v=2.5.2"></script>-->
<style>
.weex-text{font-family:"Microsoft YaHei UI" !important;}
.slide-fade-enter-active {transition: all .3s ease-in-out;}
.slide-fade-leave-active {transition: all .5s ease-in-out;}
.slide-fade-enter, .slide-fade-leave-active {transform: translateX(20px);opacity: 0;}
</style>
</head>
<body>
<div id="root">
<transition name="slide-fade">
<router-view></router-view>
</transition>
</div>
<script src="./dist/account/app.js"></script>
</body>
</html>