vueless 0.0.116 → 0.0.117
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/composable.ui/index.js +2 -2
- package/package.json +1 -1
- package/web-types.json +1 -1
package/composable.ui/index.js
CHANGED
|
@@ -149,8 +149,8 @@ function mergeConfigs({
|
|
|
149
149
|
config = {},
|
|
150
150
|
isReplace = false,
|
|
151
151
|
}) {
|
|
152
|
-
globalConfig = globalConfig || {};
|
|
153
|
-
propsConfig = propsConfig || {};
|
|
152
|
+
globalConfig = cloneDeep(globalConfig || {});
|
|
153
|
+
propsConfig = cloneDeep(propsConfig || {});
|
|
154
154
|
|
|
155
155
|
const isGlobalConfig = Object.keys(globalConfig).length;
|
|
156
156
|
const isPropsConfig = Object.keys(propsConfig).length;
|
package/package.json
CHANGED