DEV Community

Discussion on: Hands-on Vue.js for Beginners (Part 4)

Collapse
 
namstel profile image
Namstel • Edited

Thanks for the tutorial, Marina. Here's my solution:

HTML:

<span v-for="star in game.rating" @click="increaseRating(game)"></span>

JS bit:

methods: {
        increaseRating(game){
        game.rating++;
    }
},

Now on to the next! :D

Collapse
 
marinamosti profile image
Marina Mosti

Yay, thanks for reading!