forked from ispal/vue-timepickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 809 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
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>vue-timepickr</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<style type="text/css">
html {
height: 100%;
}
body {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Open Sans', sans-serif;
background: linear-gradient(to bottom right, #35013F, #902086);
}
input {
font-family: 'Open Sans', sans-serif;
}
</style>
</head>
<body>
<div id="app">
<timepicker v-model="time"></timepicker>
</div>
<!-- built files will be auto injected -->
</body>
</html>