This commit is contained in:
2020-01-30 20:22:03 +00:00
parent e0328401d9
commit 438e57297b

View File

@@ -23,8 +23,10 @@
<template v-slot:body="{ items }"> <template v-slot:body="{ items }">
<tbody> <tbody>
<tr v-for="item in items" :key="item.name"> <tr v-for="item in items" :key="item.name">
<td v-for="col in item.columns" :key="col.key"> <td v-for="c in item.columns" :key="c.key">
{{ col.v }} <div v-if="c.t === 4">
{{ c.v }}
</div>
</td> </td>
</tr> </tr>
</tbody> </tbody>