DEBUG dependance

This commit is contained in:
jleroy2023
2025-07-15 11:49:22 +02:00
parent e624d65afa
commit de9ca3c4c1
10 changed files with 122 additions and 203 deletions

View File

@@ -0,0 +1,14 @@
<template>
<v-col cols="12" sm="4" md="3">
<v-card class="hover:scale-105 transition" @click="$router.push('/pokemon/' + pokemon.id)">
<v-img :src="pokemon.sprites.regular" height="200px" />
<v-card-title>{{ pokemon.name.fr }}</v-card-title>
</v-card>
</v-col>
</template>
<script>
export default {
props: ['pokemon']
}
</script>