-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (23 loc) · 837 Bytes
/
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Dayspan Vuetify</title>
<link rel='stylesheet' href='https://unpkg.com/vuetify/dist/vuetify.min.css'>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons''>
<link rel='stylesheet' href='css/dayspan-vuetify.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="app">
<v-app ref="test">
<ds-calendar-app ref="app"
:calendar="calendar">
</v-app>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/vuetify/1.3.5/vuetify.min.js'></script>
<script src="js/dayspan-vuetify.min.js"></script>
<script src="index.js"></script>
</body>
</html>