init vue+bulma frontend
This commit is contained in:
22
lootalot_front/src/components/Chest.vue
Normal file
22
lootalot_front/src/components/Chest.vue
Normal 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>
|
||||
Reference in New Issue
Block a user