DEV Community

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

Collapse
 
jaymoh profile image
James Shisiah

Thank you Marina for your tutorial. As a beginner, it has helped me get the grasp on Vue.js.
Also, I tried out this bit and it worked just fine with v-model, without using the function return syntax:
data: {
favoriteGame: null,
response: ''
},

Thanks for the good work.

Collapse
 
marinamosti profile image
Marina Mosti

Hi James, thanks for your words. In components, you MUST use the function return syntax, else the state is going to get SHARED by all your components. If this is your MAIN component, App.vue, you can get away with using this syntax because you can guarantee there will only be one.

Collapse
 
jaymoh profile image
James Shisiah

You're very much welcome Marina, and thank you for clarifying this.