This commit is contained in:
Anton Vakhrushev 2018-05-21 08:12:55 +03:00
parent 0d4e25dbf8
commit d88efead90

18
index.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<main id="app" class="app">
<span class="score">
{{ predictor.score }}
</span>
<div class="buttons">
<button value="0" v-on:click="pass(0)">0</button>
<button value="1" v-on:click="pass(1)">1</button>
</div>
</main>
<script src="dist/app.js"></script>
</body>
</html>