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

@@ -0,0 +1,13 @@
<template>
<router-link :to="link" class="game-index-item">
<svg-vue icon="hangman" />
<h2>Pendu</h2>
</router-link>
</template>
<script>
export default {
name: "HangmanIndex",
props: ["link"],
}
</script>