<el-table-column prop="userList" label="负责人">
<template slot-scope="scope">
<span v-for="(u,i) in scope.row.userList">{{u.userName}}  </span>
</template>
</el-table-column>
在表格组件的el-table-column中添加要遍历的数据,组件通过内部封装的插槽进行显示