-
Notifications
You must be signed in to change notification settings - Fork 2
/
index-template.html
42 lines (42 loc) · 1.07 KB
/
index-template.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="//fonts.googleapis.com/icon?family=Material+Icons">
<title>vue-infinite-calendar</title>
</head>
<body>
<section class="section">
<div class="container">
<div class="content">
<div class="columns">
<div class="column">
<h1>Vue Infinite Calendar</h1>
<div id="app"></div>
</div>
<div class="column">
<br/><br/>
<h3>Usage</h3>
<pre>
<vueInfiniteCalendar
:firstDay="1"
:selected="[]"
:onSelect="..."
:onDeselect="..."
:min="minimumDate"
:max="maximumDate"
:width="300px"
:height="500px"
:monthNames="['January', ... ]"
:dayNames="['Sun', ... ]"
/>
</pre>
</div>
</div>
</div>
</div>
</section>
</body>
</html>