predictor/web/index.html
2018-06-05 18:20:47 +03:00

18 lines
515 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Predictor</title>
</head>
<body>
<main id="app" class="app" tabindex="0" v-on:keyup="press">
<span class="score">
{{ predictor.score }}
</span>
<div class="buttons">
<button value="0" v-on:click="click(0)">0</button>
<button value="1" v-on:click="click(1)">1</button>
</div>
</main>
<script src="dist/app.js"></script>
</body>
</html>