@harbor-design/proform 1.3.30 → 1.3.31
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -963,14 +963,14 @@ class vr {
|
|
|
963
963
|
// share 增加防抖,当开发者在过程中进行 share 时避免频繁触发爆栈
|
|
964
964
|
share: (r) => {
|
|
965
965
|
Object.keys(r).forEach((i) => {
|
|
966
|
-
q(r[i]) ? _(() => r[i].value, () => {
|
|
966
|
+
q(r[i]) ? (console.log("data[key]", r[i]), _(() => r[i].value, () => {
|
|
967
967
|
h(this.shared, {
|
|
968
968
|
[i]: r[i].value
|
|
969
969
|
});
|
|
970
970
|
}, {
|
|
971
971
|
deep: !0,
|
|
972
972
|
immediate: !0
|
|
973
|
-
}) : U(r[i]) ? _(() => r[i], () => {
|
|
973
|
+
})) : U(r[i]) ? _(() => r[i], () => {
|
|
974
974
|
h(this.shared, {
|
|
975
975
|
[i]: r[i]
|
|
976
976
|
});
|