-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
28 lines (27 loc) · 1.17 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-109495192-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-109495192-2');
</script>
<meta charset="utf-8">
<title>Vue Twitter Counter</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Counter component inspired in Twitter with Vue">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
</head>
<body>
<main id="app">
<h1>Vue twitter counter</h1>
<textarea v-model="message" rows="3"></textarea>
<vue-twitter-counter :current-length="message_length"></vue-twitter-counter>
<vue-twitter-counter :current-length="message.length" safe="#29f166" animate></vue-twitter-counter>
<vue-twitter-counter :current-length="message_length" :danger-at="140" :speed="1000" animate round></vue-twitter-counter>
</main>
<script src="dist/app.js"></script>
</body>
</html>