Commit 556cc7b3 by linziguan

修复:在不使用alert的情况下,自定义rowSelection失效问题

parent ae4edae3
......@@ -264,10 +264,10 @@ export default {
}
}
return props[k]
}else if(! this.rowSelection){
// 如果没打算开启 rowSelection 则清空默认的选择项
props[k] = null
return props[k]
} else if (!this.rowSelection) {
// 如果没打算开启 rowSelection 则清空默认的选择项
props[k] = null
return props[k]
}
}
props[k] = this[k]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment