Files
ENI-vue2/components/PokemonCard.vue
jleroy2023 1851ae84e4 API V1
2025-07-15 12:00:39 +02:00

15 lines
365 B
Vue

<template>
<v-col cols="12" sm="4" md="3">
<v-card class="hover:scale-105 transition" @click="$router.push('/pokemon/' + pokemon.pokedex_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>