Fixed #2653 - New Component: DynamicDialog

This commit is contained in:
mertsincan 2022-06-14 09:11:34 +01:00
parent cdf42edd14
commit 6e608144b9
24 changed files with 458 additions and 1 deletions

View file

@ -86,6 +86,10 @@ export default {
return !!(obj && obj.constructor && obj.call && obj.apply);
},
getItemValue(obj, ...params) {
return this.isFunction(obj) ? obj(...params) : obj;
},
filter(value, fields, filterValue) {
var filteredItems = [];