How to display 2 rows of data in one grid in an iview form?

as shown in the figure below, I want to achieve this effect. It doesn"t seem to work if I try to use slot-scope. How should I write it if I can only use render? thank you
clipboard.png

.
<Table :columns="columns" :data="data">
        <template slot-scope="{ row }" slot="time">
          

{{row.day}}

{{row.hour}}

</template> <template slot-scope="{ row }" slot="title">

{{row.txt}}

{{row.person}}|:{{row.number}}

</template> </Table>
Mar.23,2022
Menu