DEV Community

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

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.