We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba8f904 commit 3a195a6Copy full SHA for 3a195a6
src/vfjs-component/computed.js
@@ -1,3 +1,5 @@
1
+import { merge } from 'lodash';
2
+
3
// Elements which supports the 'value' attribute
4
const valueElements = ['input', 'option', 'textarea'];
5
@@ -54,7 +56,7 @@ const computed = {
54
56
};
55
57
},
58
vfjsComputedMergedFieldOptions() {
- return Object.assign(
59
+ return merge(
60
{},
61
this.vfjsDefaultOptions,
62
this.vfjsComputedFieldErrorOptions,
0 commit comments