问题描述:
1548123589(1).jpg
<el-table-column prop="realname" label="用户昵称" width="210" align="center">
<template slot-scope="scope">{{scope.row.userDTO.realname}}</template>
</el-table-column>
导致的原因是是异步导致,渲染的时候对象没有值,
解决办法:初始值的时候先声明下即可
tableData: [
{
userDTO: {}
}
],
网友评论