@cabloy/vue-runtime-core 3.4.48 → 3.4.49

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.
@@ -3510,8 +3510,8 @@ const TeleportImpl = {
3510
3510
  props
3511
3511
  } = vnode;
3512
3512
  if (target) {
3513
- hostRemove(targetStart);
3514
- hostRemove(targetAnchor);
3513
+ targetStart && hostRemove(targetStart);
3514
+ targetAnchor && hostRemove(targetAnchor);
3515
3515
  }
3516
3516
  doRemove && hostRemove(anchor);
3517
3517
  if (shapeFlag & 16) {
@@ -2575,8 +2575,8 @@ const TeleportImpl = {
2575
2575
  props
2576
2576
  } = vnode;
2577
2577
  if (target) {
2578
- hostRemove(targetStart);
2579
- hostRemove(targetAnchor);
2578
+ targetStart && hostRemove(targetStart);
2579
+ targetAnchor && hostRemove(targetAnchor);
2580
2580
  }
2581
2581
  doRemove && hostRemove(anchor);
2582
2582
  if (shapeFlag & 16) {
@@ -3516,8 +3516,8 @@ const TeleportImpl = {
3516
3516
  props
3517
3517
  } = vnode;
3518
3518
  if (target) {
3519
- hostRemove(targetStart);
3520
- hostRemove(targetAnchor);
3519
+ targetStart && hostRemove(targetStart);
3520
+ targetAnchor && hostRemove(targetAnchor);
3521
3521
  }
3522
3522
  doRemove && hostRemove(anchor);
3523
3523
  if (shapeFlag & 16) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.4.48",
3
+ "version": "3.4.49",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",
@@ -47,6 +47,6 @@
47
47
  "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
48
48
  "dependencies": {
49
49
  "@vue/shared": "3.4.37",
50
- "@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.48"
50
+ "@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.49"
51
51
  }
52
52
  }