depicts/static/js/next.js

16 lines
343 B
JavaScript
Raw Normal View History

2019-09-29 19:00:59 +01:00
var app = new Vue({
el: '#app',
data: {
other_props: other_props,
},
created() {
this.other_props.forEach((prop) => {
var url = prop.image_lookup;
fetch(url)
.then((res) => res.json())
.then((data) => { prop.images = data.items; })
});
}
});