Table: fix hidden summary row with async data (#5318)

pull/4780/merge
杨奕 2017-06-15 21:30:12 +08:00 committed by baiyaaaaa
parent d631c0fe45
commit c0dd2f562c
2 changed files with 3 additions and 2 deletions

View File

@ -251,8 +251,8 @@
| size | Checkbox 按钮组尺寸 | string | large, small | — |
| fill | 按钮激活时的填充色和边框色 | string | — | #20a0ff |
| text-color | 按钮激活时的文本颜色 | string | — | #ffffff |
| min | 可被勾选的 checkbox 的最数量 | number | — | — |
| max | 可被勾选的 checkbox 的最数量 | number | — | — |
| min | 可被勾选的 checkbox 的最数量 | number | — | — |
| max | 可被勾选的 checkbox 的最数量 | number | — | — |
### Checkbox-group Events
| 事件名称 | 说明 | 回调参数 |

View File

@ -406,6 +406,7 @@
immediate: true,
handler(val) {
this.store.commit('setData', val);
if (this.$ready) this.doLayout();
}
},