[Vuejs]-Display images and descriptions in VueJs

0👍

I think you have two issues with this code:

1) You are loading the ajax data in created and mounted. The images do not link to the data,

2) You also need to sort out the indenting, because I think you’re divs are not aligned as you possibly intend. Note in the images, you are looping over the this.images property which is loaded from the ajax. However, don’t the images come from the outer object you are iterating over? Or are you intending to repeat the same set of images over each time you iterate a blog item?

Leave a comment