-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 945 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 945 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue Component</title>
</head>
<body>
<div id="container">
<div id="vue-slider-container" style="height: 300px;">
<v-slider :speed="1000" :arrow="true" :dot="true">
<slider-item>
<div style="display:none;background-color:red;height:100%;">SliderA</div>
</slider-item>
<slider-item>
<div style="display:none;background-color:blue;height:100%;">SliderB</div>
</slider-item>
<slider-item>
<div style="display:none;background-color:green;height:100%;">SliderC</div>
</slider-item>
</v-slider>
</div>
</div>
<script type="text/javascript" src="/build/build.js"></script>
</body>
</html>