控制台也没有报错 ,按钮就是不显示, 不添加template标签的时候会显示,但是我想获取当前行数据加上template就不显示了 什么情况??
plus 是这样用
<el-table-column label="Date" width="180">
<template #default="scope">
<div style="display: flex; align-items: center">
<el-icon><timer /></el-icon>
<span style="margin-left: 10px">{{ scope.row.date }}</span>
</div>
</template>
</el-table-column>