-
Notifications
You must be signed in to change notification settings - Fork 163
/
index.html
37 lines (37 loc) · 935 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
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- 忽略页面中的数字识别为电话,忽略email识别 -->
<meta name="format-detection" content="telephone=no, email=no">
<!-- 设置为网页App时的Logo -->
<link rel="apple-touch-icon" href="static/logo.png">
<title>知乎日报</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
[v-cloak] {
display: none;
}
.v-cloak--block, .v-cloak--inline, .v-cloak--inlineBlock {
display: none;
}
</style>
</head>
<body>
<div id="app">
<router-view keep-alive></router-view>
</div>
<!-- built files will be auto injected -->
</body>
<script>
if ('addEventListener' in document) {
document.addEventListener('DOMContentLoaded', function () {
FastClick.attach(document.body)
}, false)
}
</script>
</html>