-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
26 lines (26 loc) · 916 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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1"/>
<meta name="renderer" content="webkit"/>
<meta name="viewport" content="initial-scale=1,maximum-scale=1, minimum-scale=1, user-scalable=no">
<title>requirejs-vue</title>
<link rel="shortcut icon" type="image/png" href="static/img/favorite.png"/>
<link rel="stylesheet" href="static/css/base.css">
<link rel="stylesheet" href="static/css/common.css">
</head>
<body>
<div id="app">
<!-- 头部 -->
<cus-header></cus-header>
<!-- 顶级路由容器 -->
<div class="content-box">
<keep-alive>
<router-view></router-view>
</keep-alive>
</div>
</div>
<script src="./vender/requirejs/require.js" data-main="./config"></script>
</body>
</html>