<template v-for="item in job">
<tr>
<td v-for="i in item.stage" :style="getStyle(i.status.name)" title="[[ i.node.name ]]" >
<b>[[ i.node.name ]]</b>
</td>
</tr>
</template>
I am facing an issue with setting the title for each td element - currently, the title is being set to [[ i.node.name ]] as a string instead of its actual value.
It is worth noting that [[ i.node.name ]] correctly prints the value, indicating that the correct data is being accessed. The problem seems to lie in the syntax used for setting the title attribute.
Additionally, I am utilizing the [[ ]] delimiters in vue.js for data binding.