You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
693 B

import {Component} from '../../lib/vues6.js'
import game_service from '../services/GameState.service.js'
const template = `
<div class="app-scoreboard-component">
Scoreboard Goes Here {{ player_one_score }}
</div>
`
export default class ScoreBoardComponent extends Component {
static get selector() { return 'app-scoreboard' }
static get template() { return template }
static get props() { return [] }
player_one_score = 0
async vue_on_create() {
game_service.on_state_change(() => {
this.update()
})
}
update() {
// here is where you should fetch the data from the game service and update variables on the class
}
}