@deot/vc-components 1.0.40 → 1.0.41
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.cjs +2 -1
- package/dist/index.iife.js +2 -1
- package/dist/index.js +2 -1
- package/dist/index.umd.cjs +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2613,7 +2613,8 @@ class Portal {
|
|
|
2613
2613
|
leaf = Portal.leafs.get(name);
|
|
2614
2614
|
leaf.target = target;
|
|
2615
2615
|
leaf.propsData.value = propsData$;
|
|
2616
|
-
leaf.wrapper?.[aliveUpdateKey]
|
|
2616
|
+
const next = leaf.wrapper?.[aliveUpdateKey];
|
|
2617
|
+
next && vue.nextTick(() => next(options));
|
|
2617
2618
|
} else {
|
|
2618
2619
|
const wrapper = this.wrapper;
|
|
2619
2620
|
const app = vue.createApp({
|
package/dist/index.iife.js
CHANGED
|
@@ -8121,7 +8121,8 @@ var VcComponents = (function (exports, vue) {
|
|
|
8121
8121
|
leaf = Portal.leafs.get(name);
|
|
8122
8122
|
leaf.target = target;
|
|
8123
8123
|
leaf.propsData.value = propsData$;
|
|
8124
|
-
leaf.wrapper?.[aliveUpdateKey]
|
|
8124
|
+
const next = leaf.wrapper?.[aliveUpdateKey];
|
|
8125
|
+
next && vue.nextTick(() => next(options));
|
|
8125
8126
|
} else {
|
|
8126
8127
|
const wrapper = this.wrapper;
|
|
8127
8128
|
const app = vue.createApp({
|
package/dist/index.js
CHANGED
|
@@ -2591,7 +2591,8 @@ class Portal {
|
|
|
2591
2591
|
leaf = Portal.leafs.get(name);
|
|
2592
2592
|
leaf.target = target;
|
|
2593
2593
|
leaf.propsData.value = propsData$;
|
|
2594
|
-
leaf.wrapper?.[aliveUpdateKey]
|
|
2594
|
+
const next = leaf.wrapper?.[aliveUpdateKey];
|
|
2595
|
+
next && nextTick(() => next(options));
|
|
2595
2596
|
} else {
|
|
2596
2597
|
const wrapper = this.wrapper;
|
|
2597
2598
|
const app = createApp({
|
package/dist/index.umd.cjs
CHANGED
|
@@ -8124,7 +8124,8 @@
|
|
|
8124
8124
|
leaf = Portal.leafs.get(name);
|
|
8125
8125
|
leaf.target = target;
|
|
8126
8126
|
leaf.propsData.value = propsData$;
|
|
8127
|
-
leaf.wrapper?.[aliveUpdateKey]
|
|
8127
|
+
const next = leaf.wrapper?.[aliveUpdateKey];
|
|
8128
|
+
next && vue.nextTick(() => next(options));
|
|
8128
8129
|
} else {
|
|
8129
8130
|
const wrapper = this.wrapper;
|
|
8130
8131
|
const app = vue.createApp({
|