init vue+bulma frontend

This commit is contained in:
2019-06-11 16:12:41 +02:00
parent 286d203ba2
commit dc978fc87f
12 changed files with 11763 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<template>
<table class="table is-fullwidth is-striped">
<thead>
<tr><th>Objets de {{ player_id }}</th></tr>
</thead>
<tbody>
<tr><td>Nom 1</td></tr>
<tr><td>Nom 2</td></tr>
<tr><td>Nom 3</td></tr>
</tbody>
</table>
</template>
<script>
export default {
props: ["player_id"],
data () {
return {
};
}
}
</script>