i am getting some warning message.The data is displaying fine.How can i resolve the warning. Warning: vue.runtime TypeError: Cannot read property 'users' of undefined
<tbody>
<tr v-for= "(item,index) in data.profile.users" :key="index" >
<template v-for="(date,user,i) in item">
<td>
{{user}}
</td>
<td>
{{ date }}
</td >
</template>
</tr>
</tbody>
export default {
props:['data'],
},
<tr v-for= "(item,index) in data.profile && data.profile.users" :key="index" >- mare96