finish hangman v1

This commit is contained in:
2020-04-04 18:56:03 +02:00
parent 79c656c7ea
commit 6bfc0bb064
9 changed files with 318 additions and 158 deletions

View File

@@ -1,16 +1,19 @@
<template>
<div class="p-2">
<h1>Liste des jeux</h1>
<div>
<router-link to="/jeux/pendu">
Pendu
</router-link>
<div class="game-index">
<HangmanIndex link="/jeux/pendu" />
</div>
</div>
</template>
<script>
import HangmanIndex from "./HangMan/HangmanIndex";
export default {
name: "GameIndex"
name: "GameIndex",
components: {
HangmanIndex
}
}
</script>