@dhccmobile/vue3-lo-form 0.1.11 → 0.1.12
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/dist/vue3-lo-form.common.js +4 -0
- package/dist/vue3-lo-form.common.js.map +1 -1
- package/dist/vue3-lo-form.umd.js +4 -0
- package/dist/vue3-lo-form.umd.js.map +1 -1
- package/dist/vue3-lo-form.umd.min.js +1 -1
- package/dist/vue3-lo-form.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/core/FormApi.ts +3 -0
|
@@ -85029,6 +85029,10 @@ class FormApi_FormApi {
|
|
|
85029
85029
|
|
|
85030
85030
|
if (this.oldVal) {
|
|
85031
85031
|
obj = this.contrast(this.oldVal, obj);
|
|
85032
|
+
|
|
85033
|
+
if (!Object.keys(obj).length) {
|
|
85034
|
+
obj = null;
|
|
85035
|
+
}
|
|
85032
85036
|
}
|
|
85033
85037
|
|
|
85034
85038
|
return obj;
|