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 }">
<tbody>
<tr v-for="item in items" :key="item.name">
<td v-for="col in item.columns" :key="col.key">
{{ col.v }}
<td v-for="c in item.columns" :key="c.key">
<div v-if="c.t === 4">
{{ c.v }}
</div>
</td>
</tr>
</tbody>