perf: optimize the code of el-table slot-scope

This commit is contained in:
Pan
2019-04-02 16:32:51 +08:00
parent a8c6e11ee6
commit 55fa5acb85
7 changed files with 46 additions and 46 deletions

View File

@@ -11,9 +11,9 @@
</template>
</el-table-column>
<el-table-column label="Status" width="100" align="center">
<template slot-scope="scope">
<el-tag :type="scope.row.status | statusFilter">
{{ scope.row.status }}
<template slot-scope="{row}">
<el-tag :type="row.status | statusFilter">
{{ row.status }}
</el-tag>
</template>
</el-table-column>