-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (116 loc) · 4.34 KB
/
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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>vucc</title>
<meta charset="utf-8">
<meta name="description" content="Vue.js - Intuitive, Fast and Composable MVVM for building interactive interfaces.">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<script>
window.PAGE_TYPE = ""
</script>
<link rel="icon" href="../images/logo.png" type="image/x-icon">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-46852172-1', 'vuejs.org');
ga('send', 'pageview');
</script>
<script src="../js/vue.js"></script>
<style>
.one-and-half-width {
width: 150%;
}
.ml-100 {
margin-left: -100px!important;
}
.content a {
font-weight: inherit!important;
}
h3.vc-dialog-title:before, .vc-progress-title h3:before, .vc-step h3:before, .vc-transfer h3:before {
content: ''!important;
}
.vc-alert h3, .vc-dialog h3, .vc-collapse-group h3, .vc-collapse h3, .vc-progress-title h3, .vc-step h3, .vc-transfer h3 {
margin: 0!important;
}
.vc-alert h3:before, .vc-collapse-group h3:before, .vc-collapse h3:before {
content: ''!important;
}
.vc-dropdown-menu {
margin: 0!important;
padding: 0!important;
}
.vc-select-selection-rendered {
margin: 0!important;
}
.vc-step {
margin: 0 0 0 -100px!important;
line-height: inherit!important;
}
.vc-step p, .vc-timeline p {
line-height: inherit!important;
margin: inherit!important;
}
.vc-tree ul {
margin: 0!important;
line-height: inherit!important;
}
</style>
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="../css/css/style.css">
<link rel="stylesheet" href="../css/css/table.css">
<style>
.hide {
display: none;
}
.show {
display: block;
}
.rcode {
position: relative;
background: #efefef;
margin-top: 30px;
}
.rcode .showcode {
position: absolute;
left: 50%;
transform: translateX(-50%);
color: #57cc95;
cursor: pointer;
}
</style>
</head>
<body style="background: #ffffff;">
<section id="app">
<div id="mobile-bar">
<a class="menu-button"></a>
<a class="logo" href="/"></a>
</div>
<div id="hero">
<div class="inner">
<ul id="nav">
<li><a href="./guide/index.html" class="nav-link">说明</a></li>
<li><a href="./scaffold/index.html" class="nav-link">脚手架</a></li>
<li><a href="./demo/index.html" class="nav-link">demo集合</a></li>
<li><a href="./history/index.html" class="nav-link">版本历史</a></li>
<li><a href="./components/index.html" class="nav-link">组件</a></li>
</ul>
<div id="logo-wrap">
<img id="logo" src="./images/logo.png">
</div>
<p class="desc">vue 组件库</p>
</div>
</div>
<script src="./js/docsearch.js"></script>
<script src="./js/smooth-scroll.min.js"></script>
<script src="./js/common.js"></script>
<script src="./js/fastclick.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
FastClick.attach(document.body);
}, false);
</script>
</section>
</body>
</html>