@vue/runtime-core 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.
@@ -7779,7 +7779,7 @@ function isMemoSame(cached, memo) {
7779
7779
  return true;
7780
7780
  }
7781
7781
 
7782
- const version = "3.4.0-alpha.2";
7782
+ const version = "3.4.0-alpha.3";
7783
7783
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
7784
7784
  const _ssrUtils = {
7785
7785
  createComponentInstance,
@@ -42,7 +42,7 @@ function handleError(err, instance, type, throwInDev = true) {
42
42
  if (instance) {
43
43
  let cur = instance.parent;
44
44
  const exposedInstance = instance.proxy;
45
- const errorInfo = type;
45
+ const errorInfo = `https://vuejs.org/errors/#runtime-${type}`;
46
46
  while (cur) {
47
47
  const errorCapturedHooks = cur.ec;
48
48
  if (errorCapturedHooks) {
@@ -6104,7 +6104,7 @@ function isMemoSame(cached, memo) {
6104
6104
  return true;
6105
6105
  }
6106
6106
 
6107
- const version = "3.4.0-alpha.2";
6107
+ const version = "3.4.0-alpha.3";
6108
6108
  const ErrorTypeStrings = null;
6109
6109
  const _ssrUtils = {
6110
6110
  createComponentInstance,
@@ -182,7 +182,7 @@ function handleError(err, instance, type, throwInDev = true) {
182
182
  if (instance) {
183
183
  let cur = instance.parent;
184
184
  const exposedInstance = instance.proxy;
185
- const errorInfo = !!(process.env.NODE_ENV !== "production") ? ErrorTypeStrings$1[type] : type;
185
+ const errorInfo = !!(process.env.NODE_ENV !== "production") ? ErrorTypeStrings$1[type] : `https://vuejs.org/errors/#runtime-${type}`;
186
186
  while (cur) {
187
187
  const errorCapturedHooks = cur.ec;
188
188
  if (errorCapturedHooks) {
@@ -7839,7 +7839,7 @@ function isMemoSame(cached, memo) {
7839
7839
  return true;
7840
7840
  }
7841
7841
 
7842
- const version = "3.4.0-alpha.2";
7842
+ const version = "3.4.0-alpha.3";
7843
7843
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
7844
7844
  const _ssrUtils = {
7845
7845
  createComponentInstance,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/runtime-core",
3
- "version": "3.4.0-alpha.2",
3
+ "version": "3.4.0-alpha.3",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
34
34
  "dependencies": {
35
- "@vue/shared": "3.4.0-alpha.2",
36
- "@vue/reactivity": "3.4.0-alpha.2"
35
+ "@vue/shared": "3.4.0-alpha.3",
36
+ "@vue/reactivity": "3.4.0-alpha.3"
37
37
  }
38
38
  }