Table: missing filteredValue prop, fixed #2348

pull/2392/head
qingwei.li 2017-01-13 14:53:58 +08:00
parent d5f4603f59
commit 8961b318df
1 changed files with 2 additions and 1 deletions

View File

@ -143,6 +143,7 @@ export default {
selectable: Function,
reserveSelection: Boolean,
filterMethod: Function,
filteredValue: Array,
filters: Array,
filterMultiple: {
type: Boolean,
@ -235,7 +236,7 @@ export default {
filterable: this.filters || this.filterMethod,
filterMultiple: this.filterMultiple,
filterOpened: false,
filteredValue: []
filteredValue: this.filteredValue || []
});
objectAssign(column, forced[type] || {});