Just starting out with vuejs and I have a question. How can I set the title based on a value returned from a specific method only if this value is true? Below is my code snippet:
<td
v-bind="value = getName(id)"
:title="value.age"
>
{{value.name}}
</td>
However, this code does not function as expected when the method returns undefined
.