add hangman dictionnary & input ajustment

This commit is contained in:
2020-04-11 17:26:44 +02:00
parent c7d4e69149
commit 37c4c2c090
11 changed files with 64 additions and 57 deletions

View File

@@ -1,5 +1,5 @@
<template>
<router-link :to="link" class="game-index-item">
<router-link :to="link">
<svg-vue icon="hangman" />
<h2>Pendu</h2>
</router-link>
@@ -8,6 +8,11 @@
<script>
export default {
name: "HangmanIndex",
props: ["link"],
props: {
link: {
type: String,
required: true
},
}
}
</script>