Commit 8961b318 authored by qingwei.li's avatar qingwei.li

Table: missing filteredValue prop, fixed #2348

parent d5f4603f
......@@ -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] || {});
......
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