-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
33 lines (30 loc) · 944 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui" />
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>vue-typescript-template</title>
<link rel="shortcut icon" href="./static/favicon.ico" />
</head>
<body>
<div id="loading" class="el-loading-mask">
<div class="el-loading-spinner">
<svg viewBox="25 25 50 50" class="circular">
<circle cx="50" cy="50" r="20" fill="none" class="path"></circle>
</svg>
<p class="el-loading-text">拼命加载中···</p>
</div>
</div>
<div id="app" v-cloak>
<transition name="fade" appear>
<keep-alive>
<router-view></router-view>
</keep-alive>
</transition>
</div>
<!-- built files will be auto injected -->
<script src="/static/vendor.dll.js"></script>
</body>
</html>