0👍
Try it
export default {
props:['item','next'],
data: function() {
bookDetail:'',
sameauthorbooks: this.next,
},
methods: {
changeBook(item) {
this.bookDetail = item;
}
},
created() {
this.bookDetail = this.item;
}
}
Source:stackexchange.com