<div id="commentsBlock"><vue-comments-item :model="treeComments"></vue-comments-item></div>
Vue.component('item', {
template: '' +
'<item>' +
'<li v-for="comment in model">' +
'<div>{{comment.users.username}}<br />{{comment.text}}</div>' +
'<ul :model="comment" v-if="replies">' +
'<vue-comments-item v-for="model in comment.replies" :model="model"></vue-comments-item>' +
'</ul>' +
'</li>' +
'</item>' +
'',
props: {
model: Object
},
computed: {
replies: function () {
console.log(JSON.stringify(this.model, null, 4));
}
},
})
как в computed обратиться к итерации comment объекта model ?
this.model выводит весь объект model, а мне нужно чтобы он вывел текущий объект v-for
пытался переопределить :mode="comment" - результат нулевой
подскажите кто-нибудь плиз)) весь день убил на это чертово дерево