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
<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>