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

20 lines
520 B
HTML

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<script src="vue.js"></script>
</head>
<body>
<div id='app'>
<button v-on:click="counter++">Increase</button>
<button v-on:click="counter--">Decrease</button>
<button v-on:click="secondCounter++">Increase 2nd Counter</button>
<p>counter: {{counter}} | {{secondCounter}}</p>
<p>result: {{result()}} | {{ output }}</p>
</div>
<script src="app.js" charset="utf-8"></script>
</body>
</html>