I am working on vue component file, I fetched data through laravel WebSockets, now I want to print the selected data in a table in the template tag, but my rows are in the table printed blank, rows are increasing but with empty data. please let me know where I am mistaken.
<template>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">Example Component</div>
<div class="card-body">
<table border="1">
<tr>
<th>Email</th>
<th>Address</th>
</tr>
<tr v-for="list in Items" :key="list.id">
<td> {{list.email}} </td>
<td> {{list.address}} </td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import axios from "axios";
import Echo from "laravel-echo";
export default {
data(){
return{
Items:[]
}
},
mounted() {
this.FetchItems();
},
methods:{
FetchItems(){
window.Echo.channel('lists')
.listen('DataUpdate',(e) =>{
this.Items = e.lists;
console.log(this.Items);
});
}
}
}
</script>