8 th(v-if="showResult") Result
9 // TODO: show my games first (st.user.id or sid)
10 tr(v-for="g in games" @click="$emit('show-game',g)")
12 td {{ g.players[0].name || "@nonymous" }}
13 td {{ g.players[1].name || "@nonymous" }}
14 td {{ g.timeControl }}
15 td(v-if="showResult") {{ g.score }}
23 showResult: function() {
24 return this.games.some(g => g.score != "*");