Commit a2876ab8 authored by baiyaaaaa's avatar baiyaaaaa Committed by GitHub

Merge pull request #2392 from QingWei-Li/fix/table/filteredValue

Table: missing filteredValue prop, fixed #2348
parents 31d7acc7 8961b318
...@@ -143,6 +143,7 @@ export default { ...@@ -143,6 +143,7 @@ export default {
selectable: Function, selectable: Function,
reserveSelection: Boolean, reserveSelection: Boolean,
filterMethod: Function, filterMethod: Function,
filteredValue: Array,
filters: Array, filters: Array,
filterMultiple: { filterMultiple: {
type: Boolean, type: Boolean,
...@@ -235,7 +236,7 @@ export default { ...@@ -235,7 +236,7 @@ export default {
filterable: this.filters || this.filterMethod, filterable: this.filters || this.filterMethod,
filterMultiple: this.filterMultiple, filterMultiple: this.filterMultiple,
filterOpened: false, filterOpened: false,
filteredValue: [] filteredValue: this.filteredValue || []
}); });
objectAssign(column, forced[type] || {}); objectAssign(column, forced[type] || {});
......
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