<el-table-columnlabel="性别"width="60"align="center"prop="gender"><templateslot-scope="scope">{{ scope.row.gender === 0 ? '男' : '女' }}</template></el-table-column>
formatter是el-table-column的一个属性,用来格式化内容。(比如后台给你返0或1,你需要展示成“否”和“是”)详细使用1.知道formatter之前:代码如下(示例):1 2 3 4 5 6 7 8 9 10 11 <el-table :data="tabledata"> <el-table-column label="类型" prop="type"> <template slot-scope="scope"> <...