У меня есть компонент с массивом картинок, я хочу передать ему в "props" массив их адресов (src)
При этом адреса всегда будут разные, я не хочу передавать переменную с адресами, а хочу писать их на месте
<post
avatar="./img/2.jpg"
imgSrc="['./img/3.jpg', './img/2.jpg']" //что тут написать?
name="Terrance arnold"
description="posted an updated"
online="active 14 minutes ago"
text="“Check if it can be corrected with overflow : hidden”"
></post>
//props нужного компонента
props: {
avatar: String,
name: String,
description: String,
online: {
default: "Online",
type: String
},
imgSrc: {
type: Array,
default: function() {
return [];
}
},
title: String,
text: String
}