Well, this problem puzzled me ... Having a bit of trouble getting the attached loop data to display:
<div v-if = "private.folders!=null" v-for="folder in private.folders"> {{folder.name}} <div v-for="check in folder.checks"> {{check.name}} </div> </div>
And then the data I'm trying to use is as follows:
folders [Array] -object [this is a single 'folder'] --name --checks [array] [each folder has this array] ---[object] [the actual 'check' object] ----[name]
The outer loop works very well and returns the expected data. However, check.name does not return anything, and there are no errors in the console. Is it possible to do nested for such loops?
mdobrenko
source share