Answer the question
In order to leave comments, you need to log in
Why is there an error in the template?
Vue.component('Pict',{
props: {
order: String
},
computed: {
picture(){
return gallery.find(item => item.order === this.order);
}
},
mounted(){
console.log(this.picture)
},
template: `<div class="galery-img-wrapper">
<div class="gallery-img" :style="{background: \`url(img/gallery/${picture.img}\`}"></div>
</div>`
})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question