@vue/compat 3.4.0-alpha.2 → 3.4.0-alpha.3
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/vue.cjs.js +4 -2
- package/dist/vue.cjs.prod.js +5 -3
- package/dist/vue.esm-browser.js +4 -2
- package/dist/vue.esm-browser.prod.js +3 -3
- package/dist/vue.esm-bundler.js +6 -4
- package/dist/vue.global.js +4 -2
- package/dist/vue.global.prod.js +3 -3
- package/dist/vue.runtime.esm-browser.js +2 -2
- package/dist/vue.runtime.esm-browser.prod.js +5 -5
- package/dist/vue.runtime.esm-bundler.js +3 -3
- package/dist/vue.runtime.global.js +2 -2
- package/dist/vue.runtime.global.prod.js +3 -3
- package/package.json +3 -3
package/dist/vue.esm-bundler.js
CHANGED
|
@@ -1677,7 +1677,7 @@ function handleError(err, instance, type, throwInDev = true) {
|
|
|
1677
1677
|
if (instance) {
|
|
1678
1678
|
let cur = instance.parent;
|
|
1679
1679
|
const exposedInstance = instance.proxy;
|
|
1680
|
-
const errorInfo = !!(process.env.NODE_ENV !== "production") ? ErrorTypeStrings$1[type] : type
|
|
1680
|
+
const errorInfo = !!(process.env.NODE_ENV !== "production") ? ErrorTypeStrings$1[type] : `https://vuejs.org/errors/#runtime-${type}`;
|
|
1681
1681
|
while (cur) {
|
|
1682
1682
|
const errorCapturedHooks = cur.ec;
|
|
1683
1683
|
if (errorCapturedHooks) {
|
|
@@ -6362,7 +6362,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
6362
6362
|
return vm;
|
|
6363
6363
|
}
|
|
6364
6364
|
}
|
|
6365
|
-
Vue.version = `2.6.14-compat:${"3.4.0-alpha.
|
|
6365
|
+
Vue.version = `2.6.14-compat:${"3.4.0-alpha.3"}`;
|
|
6366
6366
|
Vue.config = singletonApp.config;
|
|
6367
6367
|
Vue.use = (p, ...options) => {
|
|
6368
6368
|
if (p && isFunction(p.install)) {
|
|
@@ -11026,7 +11026,7 @@ function isMemoSame(cached, memo) {
|
|
|
11026
11026
|
return true;
|
|
11027
11027
|
}
|
|
11028
11028
|
|
|
11029
|
-
const version = "3.4.0-alpha.
|
|
11029
|
+
const version = "3.4.0-alpha.3";
|
|
11030
11030
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
11031
11031
|
const _ssrUtils = {
|
|
11032
11032
|
createComponentInstance,
|
|
@@ -14007,7 +14007,7 @@ function defaultOnWarn(msg) {
|
|
|
14007
14007
|
!!(process.env.NODE_ENV !== "production") && console.warn(`[Vue warn] ${msg.message}`);
|
|
14008
14008
|
}
|
|
14009
14009
|
function createCompilerError(code, loc, messages, additionalMessage) {
|
|
14010
|
-
const msg = !!(process.env.NODE_ENV !== "production") || false ? (messages || errorMessages)[code] + (additionalMessage || ``) : code
|
|
14010
|
+
const msg = !!(process.env.NODE_ENV !== "production") || false ? (messages || errorMessages)[code] + (additionalMessage || ``) : `https://vuejs.org/errors/#compiler-${code}`;
|
|
14011
14011
|
const error = new SyntaxError(String(msg));
|
|
14012
14012
|
error.code = code;
|
|
14013
14013
|
error.loc = loc;
|
|
@@ -14464,6 +14464,8 @@ const tokenizer = new Tokenizer(stack, {
|
|
|
14464
14464
|
}
|
|
14465
14465
|
},
|
|
14466
14466
|
ondirarg(start, end) {
|
|
14467
|
+
if (start === end)
|
|
14468
|
+
return;
|
|
14467
14469
|
const arg = getSlice(start, end);
|
|
14468
14470
|
if (inVPre) {
|
|
14469
14471
|
currentProp.name += arg;
|
package/dist/vue.global.js
CHANGED
|
@@ -6325,7 +6325,7 @@ If this is a native custom element, make sure to exclude it from component resol
|
|
|
6325
6325
|
return vm;
|
|
6326
6326
|
}
|
|
6327
6327
|
}
|
|
6328
|
-
Vue.version = `2.6.14-compat:${"3.4.0-alpha.
|
|
6328
|
+
Vue.version = `2.6.14-compat:${"3.4.0-alpha.3"}`;
|
|
6329
6329
|
Vue.config = singletonApp.config;
|
|
6330
6330
|
Vue.use = (p, ...options) => {
|
|
6331
6331
|
if (p && isFunction(p.install)) {
|
|
@@ -10918,7 +10918,7 @@ Component that was made reactive: `,
|
|
|
10918
10918
|
return true;
|
|
10919
10919
|
}
|
|
10920
10920
|
|
|
10921
|
-
const version = "3.4.0-alpha.
|
|
10921
|
+
const version = "3.4.0-alpha.3";
|
|
10922
10922
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
10923
10923
|
const ssrUtils = null;
|
|
10924
10924
|
const resolveFilter = resolveFilter$1 ;
|
|
@@ -14294,6 +14294,8 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
14294
14294
|
}
|
|
14295
14295
|
},
|
|
14296
14296
|
ondirarg(start, end) {
|
|
14297
|
+
if (start === end)
|
|
14298
|
+
return;
|
|
14297
14299
|
const arg = getSlice(start, end);
|
|
14298
14300
|
if (inVPre) {
|
|
14299
14301
|
currentProp.name += arg;
|