标签:switch width img nbsp 列表 idt isa height v-model
1、
<el-table-column prop="gender" align="center" label="性别" width="100">
<template slot-scope="scope">{{ scope.row.gender === 0 ? ‘男‘ : ‘女‘ }}</template>
</el-table-column>
2、
<el-table-column label="状态">
<template slot-scope="scope">
<div v-if="scope.row.userState == 0">
<el-switch v-model="value0" disabled></el-switch>
</div>
<div v-else="scope.row.userState == 1">
<el-switch v-model="value1" disabled></el-switch>
</div>
</template>
</el-table-column>
标签:switch width img nbsp 列表 idt isa height v-model
原文地址:https://www.cnblogs.com/sylys/p/12234026.html