Files
portal/resources/js/views/Games/HangMan/HangmanIndex.vue
2020-04-04 18:56:03 +02:00

14 lines
255 B
Vue

<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>