element(table下td循环数据)

<el-table-column
  prop="customerName" label="客户姓名"
  header-align="center" align="center">
  <template slot-scope="scope">
    <div  @click="peoDetails($event)">
    {{scope.row.customerName}}
    </div>
  </template>
</el-table-column>

猜你喜欢

转载自blog.csdn.net/qq_39237755/article/details/81079819