Skip to content
Advertisement

Watching parent with prop doesn’t update during for loop

I have 2 components – <my-component> and <grand-child-comp>.

In my root there is a multidimensional object and my component watches it with prop.

JavaScript

In Vue debugger, I can see that my-component is getting and watching accountTypes object successfully. However, when trying to use it in my-component's template, it doesn’t work.

JavaScript

Lastly, accountTypes object looks like:

JavaScript

Advertisement

Answer

The problem is you’re doing the v-for and passing a property at the same time on the same element. You need to nest them so that the element the v-for is on wraps the <grand-child-comp>. The documentation recommends a template for this.

JavaScript

UPDATE: Based on what you said in your comments, what it sound like you really need is two nested for loops.

JavaScript

Your usage of components wasn’t necessary. Components are only needed if you plan to use something in multiple places around your app. Just because the for loop is repeating the same elements multiple times doesn’t mean you actually need a component there; The template inside the for loop would be enough.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement