<td class="one-third column" v-for="user in users" :key="user._id">
<div>
<v-btn @click="printIdOrName(user)" height="50" size="large" color="purple" >
{{ user.it_name.slice(0, 10) }}
</v-btn>
</div>
</td>
When trying to print the user's ID or name, it throws an error "Cannot read properties of undefined (reading 'value')". How can we successfully print either user._id or user.it_name in the console? Thank you.