forked from yuche/vue-strap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (79 loc) · 3.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>VueStrap - Bootstrap components built with Vue.js</title>
<!-- <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,600|Source+Code+Pro' rel='stylesheet' type='text/css'> -->
<!--
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.css">
-->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha256-7s5uDGW3AHqw6xtJmNNtr+OBRJUlgkNJEo78P4b0yRw= sha512-nNo+yCHEyn0smMxSswnf/OnX6/KwJuZTlNZBjauKhTK0c+zT+q5JOCx0UFhXQ6rJR9jg6Es8gPuD2uZcYDLqSw==" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="docs/assets/prism-coy.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<div id="wrapper">
<header-docs></header-docs>
<div class="bs-docs-header">
<div class="container">
<h1>VueStrap</h1>
<p>Bootstrap components built with <a target="_blank" href="http://vuejs.org/">Vue.js</a>.</p>
<p>No jQuery, bootstrap.js, or any 3rd party plugins required.</p>
<br>
<p>
<a class="btn btn-outline-inverse btn-lg" href="https://github.com/yuche/vue-strap">
Code on GitHub
</a>
</p>
</div>
</div>
<container>
<div class="col-md-9">
<getting-started></getting-started>
<accordion-docs></accordion-docs>
<affix-docs></affix-docs>
<alert-docs></alert-docs>
<aside-docs></aside-docs>
<buttons-docs></buttons-docs>
<carousel-docs></carousel-docs>
<datepicker-docs></datepicker-docs>
<dropdown-docs></dropdown-docs>
<modal-docs></modal-docs>
<popover-docs></popover-docs>
<progressbar-docs></progressbar-docs>
<select-docs></select-docs>
<tabs-docs></tabs-docs>
<tooltip-docs></tooltip-docs>
<typeahead-docs></typeahead-docs>
<spinner-docs></spinner-docs>
</div>
<div class="col-md-3">
<affix>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm ">
<ul class="nav bs-docs-sidenav" id="sidenav">
<li v-for="a in anchor"><a href="#{{ a.toLowerCase() }}">{{ a | space}}</a></li>
</ul>
<a href="#top" class="back-to-top">Back to top</a>
<a href="https://github.com/yuche/vue-strap" class="back-to-top">GitHub</a>
</nav>
</affix>
</div>
</container>
</div>
<footer class="bs-docs-footer">
<div class="container">
<p>
Designed and built by <a href="https://github.com/yuche/">yuche</a>.
</p>
<p>
<p>Using <a href="http://twitter.github.com/bootstrap" target="_blank">Twitter Bootstrap</a> and the <a href="css/docs.css" target="_blank">Bootstrap's docs styles</a> designed and built by <a href="http://twitter.com/mdo" target="_blank">@mdo</a> and <a href="http://twitter.com/fat" target="_blank">@fat</a>.</p>
</p>
<p>
<p>Code licensed under <a href="//github.com/mgcrea/angular-strap/blob/master/LICENSE.md" target="_blank">The MIT License</a>, documentation under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p> </p>
</div>
</footer>
<!-- using cdn version here so it works under gh-pages -->
<script src="//cdnjs.cloudflare.com/ajax/libs/vue/1.0.13/vue.min.js"></script>
<script src="build/build-docs.js"></script>
</body>
</html>