forked from sagalbot/vue-pikaday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (68 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>vue-pikaday | a vue.js datepicker</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
body {
font-family: 'Open Sans', sans-serif;
}
.jumbotron {
background: none;
}
.jumbotron h1 {
color: #4fc08d;
}
p,h4,a {
color: #b3b3b3;
}
a {
text-decoration: underline;
}
a:hover {
color: #4fc08d;
}
pre.form-control {
background: #dbdbdb;
border: none;
}
.row {
margin-top: 3em;
}
.btn-outline {
text-decoration: none;
background: none;
border: 3px solid #4fc08d;
color: #4fc08d;
}
.btn-outline:hover {
color: #fff;
background: #4fc08d;
}
</style>
</head>
<body>
<div id="app" class="container">
<div class="jumbotron">
<h1 class="text-center">Vue Pikaday</h1>
<p class="text-center">A lightweight Vue.js directive wrapper over <a href="dbushell/Pikaday">dbushell/Pikaday</a>.</p>
<div class="row">
<div class="col-md-3 col-md-offset-3">
<h4>Input</h4>
<input placeholder="Choose a date..." type="text" v-date="date" class="form-control">
</div>
<div class="col-md-3">
<h4>VM Data</h4>
<pre class="form-control">{ "date": {{ date | json }} }</pre>
</div>
</div>
<div class="row text-center">
<a href="https://github.com/sagalbot/vue-pikaday" class="btn btn-lg btn-outline">View on GitHub</a>
</div>
</div>
</div>
<script src="dist/build.js"></script>s
</body>
</html>