@tripup-company/element-ui-extended 0.0.17 → 0.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tripup-company/element-ui-extended",
3
- "version": "0.0.17",
3
+ "version": "0.0.21",
4
4
  "main": "./dist/element-ui-extended.umd.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -231,6 +231,7 @@ export default {
231
231
  this.handleCurrentChange(1);
232
232
  },
233
233
  handleApplyFilter(val) {
234
+ Vue.set(this, "search", val);
234
235
  this.listQueryService.updateListQuery({ search: val });
235
236
  this.handleFilterChange();
236
237
  },
@@ -245,6 +246,7 @@ export default {
245
246
  this.handleFilterChange({});
246
247
  },
247
248
  handleApplyTopFilter(val) {
249
+ Vue.set(this, "topSearch", val);
248
250
  this.listQueryService.updateListQuery({ topSearch: val });
249
251
  this.handleFilterChange();
250
252
  },