[Vuejs]-Vuejs update parent component data from extended component events

0👍

Welcome to SO!

Here, you’re getting a value of title from parent components. Hence you need to get it from Parent component.

You can use $parent before title to get the value of the title.

Here is the link to working JsFiddle

Hope this helps!

Leave a comment