learnin-some-vue/index.html
2018-04-13 14:13:44 -04:00

23 lines
589 B
HTML

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<script src="vue.js"></script>
</head>
<body>
<div id='app'>
<button @click="increase(2, $event)">Click Me</button>
<button @click="counter++">Click Me</button>
<p>{{ counter }}</p>
<p v-on:mousemove="updateCoordinates">Coordinates {{x}}, {{y}}
<span v-on:mousemove.stop.prevent=""> DEAD SPOT</span>
</p>
<input type="text" v-on:keyup.enter='alertMe'>
</div>
<script src="app.js" charset="utf-8"></script>
</body>
</html>