20 lines
417 B
Vue
20 lines
417 B
Vue
<template>
|
|
<div class="p-4">
|
|
<h1 class="page-title">Liste des jeux</h1>
|
|
<div class="flex flex-wrap mt-4">
|
|
<HangmanIndex link="/jeux/pendu" class="w-full sm:w-1/2 md:w-1/3 lg:w-1/4 card" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import HangmanIndex from './HangMan/HangmanIndex'
|
|
|
|
export default {
|
|
name: 'GameIndex',
|
|
components: {
|
|
HangmanIndex
|
|
}
|
|
}
|
|
</script>
|