@vue/runtime-dom 3.3.0-alpha.1 → 3.3.0-alpha.10
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/runtime-dom.cjs.js +2 -2
- package/dist/runtime-dom.cjs.prod.js +2 -2
- package/dist/runtime-dom.d.ts +1081 -1297
- package/dist/runtime-dom.esm-browser.js +913 -791
- package/dist/runtime-dom.esm-browser.prod.js +1 -1
- package/dist/runtime-dom.global.js +918 -790
- package/dist/runtime-dom.global.prod.js +1 -1
- package/package.json +4 -4
package/dist/runtime-dom.cjs.js
CHANGED
|
@@ -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
|
});
|