predictor/web/index.html

19 lines
582 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>
<button value="2" v-on:click="click(2)">2</button>
</div>
</main>
<script src="dist/app.js"></script>
</body>
</html>