@vue/runtime-dom 3.3.0-alpha.4 → 3.3.0-alpha.6

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.
@@ -1482,6 +1482,6 @@ exports.vModelText = vModelText;
1482
1482
  exports.vShow = vShow;
1483
1483
  exports.withKeys = withKeys;
1484
1484
  exports.withModifiers = withModifiers;
1485
- Object.keys(runtimeCore).forEach(function(k) {
1486
- if (k !== 'default') exports[k] = runtimeCore[k];
1485
+ Object.keys(runtimeCore).forEach(function (k) {
1486
+ if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = runtimeCore[k];
1487
1487
  });
@@ -1385,6 +1385,6 @@ exports.vModelText = vModelText;
1385
1385
  exports.vShow = vShow;
1386
1386
  exports.withKeys = withKeys;
1387
1387
  exports.withModifiers = withModifiers;
1388
- Object.keys(runtimeCore).forEach(function(k) {
1389
- if (k !== 'default') exports[k] = runtimeCore[k];
1388
+ Object.keys(runtimeCore).forEach(function (k) {
1389
+ if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = runtimeCore[k];
1390
1390
  });