5563

Results 2 issues of 5563

使用版本` "version": "2.1.0" ` 时候 video 组件中间不显示播放按钮 ![image](https://user-images.githubusercontent.com/57325200/183829631-e0d82bc9-ec9a-4d98-b868-c12872a38347.png) 版本换成` "version": "1.3.18"`时候就会出现中间播放按钮 但是如果不设置poster的时候被强制加了` poster="http://shp.qpic.cn/qqvideo/0/d3351g0vwwa/0"`这个空白图片 ![image](https://user-images.githubusercontent.com/57325200/183830064-d753e2f6-2f59-44e0-bcec-3e655c379bd1.png)

### What problem does this feature solve? 有个需求 点击整行内容任意地方选中多选框, 开始自己用slot 自定义一个多选框的实现这个功能, 后来百度搜索发现table有内置属性可以触发多选 `this.$refs.tableRef.toggleSelect(index)` ,但是在文档上没有发现,走了很多弯路 ### What does the proposed API look like? ```JS handleRowClick(record,index) { if(!record._disabled){ this.$refs.tableRef.toggleSelect(index) } }, ```