-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (64 loc) · 2.24 KB
/
index.html
File metadata and controls
65 lines (64 loc) · 2.24 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS-组件</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/widget.css">
</head>
<body>
<div class="container">
<header>
<div><h1>CSS 组件</h1>
<p>组件样式代码存放-->widget.css</p></div>
</header>
<div id="app">
<div class="content">
<router-view></router-view>
</div>
<div class="nav">
<h2>Conponents</h2>
<ul>
<li>
<router-link to="/conponents/button"><h4>Button</h4></router-link>
</li>
<li>
<router-link to="/conponents/radio"><h4>Radio Button</h4></router-link>
</li>
<li>
<router-link to="/conponents/checkbox"><h4>Checkbox</h4></router-link>
</li>
<li>
<router-link to="/conponents/input"><h4>Text input box</h4></router-link>
</li>
<li>
<router-link to="/conponents/dropdown"><h4>Dropdown menu</h4></router-link>
</li>
<li>
<router-link to="/conponents/tips"><h4>Tips</h4></router-link>
</li>
<li>
<router-link to="/conponents/popover"><h4>Popover</h4></router-link>
</li>
<li>
<router-link to="/conponents/table"><h4>Table</h4></router-link>
</li>
<li>
<router-link to="/conponents/pagination"><h4>Pagination</h4></router-link>
</li>
<li>
<router-link to="/conponents/tabs"><h4>Tabs</h4></router-link>
</li>
<li>
<router-link to="/conponents/progress"><h4>Progress Bar</h4></router-link>
</li>
</ul>
</div>
</div>
<footer>© 2017 <a href="https://github.com/junruchen/junruchen.github.io/wiki" target="_blank">陈俊汝</a>
</footer>
</div>
<script src="build/common.js"></script>
<script src="build/build.js"></script>
</body>
</html>