Has anyone experimented with implementing dynamic table rowspan in vue.js?
Here is the sample data
{
date: '2018-08-14',
temp_que : 120,
},
{
date: '2018-08-14',
temp_que : 120,
},
{
date: '2018-08-15',
temp_que : 120,
},
{
date: '2018-08-15',
temp_que : 120,
},
Shown below is the HTML template using Vue.js
<template v-for="(item, i) in list">
<tr>
<td
:rowspan=""
v-if=""
class="text-center"
v-text="item.date"
></td>
</tr>
</template>
The question at hand is how to set a rowspan when dates are the same?