vue 3.4.0-alpha.4 → 3.4.0-beta.1
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/README.md +1 -0
- package/dist/vue.esm-browser.js +439 -261
- package/dist/vue.esm-browser.prod.js +5 -5
- package/dist/vue.global.js +439 -261
- package/dist/vue.global.prod.js +5 -5
- package/dist/vue.runtime.esm-browser.js +421 -241
- package/dist/vue.runtime.esm-browser.prod.js +5 -5
- package/dist/vue.runtime.global.js +421 -241
- package/dist/vue.runtime.global.prod.js +5 -5
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -37,6 +37,7 @@ Starting with 3.0.0-rc.3, `esm-bundler` builds now exposes global feature flags
|
|
|
37
37
|
|
|
38
38
|
- `__VUE_OPTIONS_API__` (enable/disable Options API support, default: `true`)
|
|
39
39
|
- `__VUE_PROD_DEVTOOLS__` (enable/disable devtools support in production, default: `false`)
|
|
40
|
+
- `__VUE_PROD_HYDRATION_MISMATCH_DETAILS__` (enable/disable detailed warnings for hydration mismatches in production, default: `false`)
|
|
40
41
|
|
|
41
42
|
The build will work without configuring these flags, however it is **strongly recommended** to properly configure them in order to get proper tree-shaking in the final bundle. To configure these flags:
|
|
42
43
|
|