赋值方法1. 使用prop

<el-table :data="tableData">
    <el-table-column prop="date" width="200" label="日期"></el-table-column>
</el-table>

赋值方法2. 嵌套一个template

<el-table :data="tableData">
    <el-table-column label="日期" width="200">
        <template slot-scope="scope">
            {{ scope.row.date }}
        </template>
    </el-table-column>
</el-table>

Logo

前往低代码交流专区

更多推荐