Answer the question
In order to leave comments, you need to log in
How to get around the issue of quotes inside quotes?
Vue.component('Media',{
props: {
order: String
},
computed: {
media(){
return media.find(item => item.order === this.order);
}
},
mounted(){
console.log(this.order)
},
template: `<div class="media-box">
<div class="media-img" v-bind:style="{background: `url(img/advantage/${order}-mini.jpg) no-repeat`}" ></div>
<div class="media-info">
<div class="media-title">{{media.title}}</div>
<div class="media-text">{{media.text}}</div>
<a :href="media.link" class="more-button media-btn">Подробнее</a>
</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