el-table中如何遍历数组中对象里的数组?

            <el-table-column prop="address" label="地址"></el-table-column>

            <el-table-column  label="关联门店" width="240" align="left">
                <span slot-scope="scope">
                    <span v-for="item in scope.row.shop">{{ item.shopName }}&nbsp</span>
                </span>
            </el-table-column>
            <el-table-column prop="whStat" label="仓库状态"></el-table-column>

原文地址:https://www.cnblogs.com/hujesse4/p/14985343.html