-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1009 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vue</title>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://cdn.jsdelivr.net/npm/vue-touch-ripple@3.0.0/dist/vue-touch-ripple.js"></script>
<link href="https://cdn.jsdelivr.net/npm/vue-touch-ripple@3.0.0/dist/vue-touch-ripple.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="vueapp">
<touch-ripple :speed="1.5" color="#0064ff" class="btn">
<button class="">Text</button>
</touch-ripple>
<touch-ripple :speed="1.5" class="btn">
<button class="black">Black</button>
</touch-ripple>
<touch-ripple :speed="1.5" color="#fff" class="btn">
<button class="contained">Contained</button>
</touch-ripple>
<cbtn itemprop="Component"></cbtn>
</div>
<script src="script.js"></script>
</body>
</html>