样式如下

<el-table-column label="姓名" prop="username">
	<template slot-scope='scope'>
			<el-select v-model='scope.row.type'>
				<el-option v-for='item in option' :key='item.id' :value='item.lable' :label='item.label'>  			</el-option>
			</el-select>
	</template>
</el-table-column>

option是写在data里面的数据。
scope.row.type是后台传来的数据,也就是默认绑定的是后端传过来的值。

Logo

前往低代码交流专区

更多推荐