30 lines
No EOL
389 B
Vue
30 lines
No EOL
389 B
Vue
<template>
|
|
<div id="game_lobby">
|
|
<h1>
|
|
Secret Hitler Online
|
|
</h1>
|
|
<div>
|
|
<div
|
|
v-for="player in players"
|
|
:key="player.id"
|
|
class="player"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'GameLobby',
|
|
components: {},
|
|
data() {return {
|
|
players: []
|
|
}},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
@import "../theme.styl"
|
|
|
|
</style> |