-
Notifications
You must be signed in to change notification settings - Fork 0
/
14_indexList.html
54 lines (52 loc) · 1.33 KB
/
14_indexList.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- 引入样式 -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="app">
<mt-index-list>
<mt-index-section index="A">
<mt-cell title="Aaron"></mt-cell>
<mt-cell title="Alden"></mt-cell>
<mt-cell title="Austin"></mt-cell>
</mt-index-section>
<mt-index-section index="B">
<mt-cell title="Baldwin"></mt-cell>
<mt-cell title="Braden"></mt-cell>
</mt-index-section>
<mt-index-section index="C">
<mt-cell title="Caldwin"></mt-cell>
<mt-cell title="Craden"></mt-cell>
</mt-index-section>
<mt-index-section index="D">
<mt-cell title="Daldwin"></mt-cell>
<mt-cell title="Draden"></mt-cell>
</mt-index-section>
<mt-index-section index="E">
<mt-cell title="Ealdwin"></mt-cell>
<mt-cell title="Eraden"></mt-cell>
</mt-index-section>
<mt-index-section index="F">
<mt-cell title="Faldwin"></mt-cell>
<mt-cell title="Fraden"></mt-cell>
</mt-index-section>
<mt-index-section index="Z">
<mt-cell title="Zack"></mt-cell>
<mt-cell title="Zane"></mt-cell>
</mt-index-section>
</mt-index-list>
</div>
</body>
<!-- 先引入 Vue -->
<script src="vue.js"></script>
<!-- 引入组件库 -->
<script src="mint-ui/lib/index.js"></script>
<script>
new Vue({
el: '#app',
})
</script>
</html>