adds simple global state, adds dropdown to switch players

This commit is contained in:
2019-06-11 22:08:53 +02:00
parent 4454bd245c
commit feef8146d2
3 changed files with 84 additions and 31 deletions

View File

@@ -0,0 +1,22 @@
<template>
<section id="main" class="section">
<div id="main-heading" class="columns is-mobile is-vcentered">
<div class="column is-narrow">
<span class="icon is-large"><i class="fas fa-3x fa-gem"></i></span>
</div>
<div class="column has-text-left">
<h1 class="title">Coffre de groupe</h1>
</div>
</div>
<Chest player_id="0"></Chest>
</section>
</template>
<script>
import Chest from './Chest.vue'
export default {
components: { Chest },
data () { return {}; }
}
</script>