@vue/compat 3.2.31 → 3.2.34-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 -2
- package/dist/vue.cjs.js +5189 -5008
- package/dist/vue.cjs.prod.js +4385 -4252
- package/dist/vue.esm-browser.js +5094 -4941
- package/dist/vue.esm-browser.prod.js +1 -1
- package/dist/vue.esm-bundler.js +5248 -5092
- package/dist/vue.global.js +5094 -4941
- package/dist/vue.global.prod.js +1 -1
- package/dist/vue.runtime.esm-browser.js +5061 -4925
- package/dist/vue.runtime.esm-browser.prod.js +1 -1
- package/dist/vue.runtime.esm-bundler.js +5211 -5072
- package/dist/vue.runtime.global.js +5061 -4925
- package/dist/vue.runtime.global.prod.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -281,7 +281,7 @@ Features that start with `COMPILER_` are compiler-specific: if you are using the
|
|
|
281
281
|
|
|
282
282
|
| ID | Type | Description | Docs |
|
|
283
283
|
| ------------------ | ---- | ------------------------------------- | ---------------------------------------- |
|
|
284
|
-
| TRANSITION_CLASSES | ⭘ |
|
|
284
|
+
| TRANSITION_CLASSES | ⭘ | Transition enter/leave classes changed | [link](https://v3-migration.vuejs.org/breaking-changes/transition.html) |
|
|
285
285
|
|
|
286
286
|
### Fully Compatible
|
|
287
287
|
|
|
@@ -308,7 +308,6 @@ Features that start with `COMPILER_` are compiler-specific: if you are using the
|
|
|
308
308
|
| OPTIONS_BEFORE_DESTROY | ✔ | `beforeDestroy` -> `beforeUnmount` | |
|
|
309
309
|
| OPTIONS_DESTROYED | ✔ | `destroyed` -> `unmounted` | |
|
|
310
310
|
| WATCH_ARRAY | ✔ | watching an array no longer triggers on mutation unless deep | [link](https://v3-migration.vuejs.org/breaking-changes/watch.html) |
|
|
311
|
-
| V_FOR_REF | ✔ | `ref` inside `v-for` no longer registers array of refs | [link](https://v3-migration.vuejs.org/breaking-changes/array-refs.html) |
|
|
312
311
|
| V_ON_KEYCODE_MODIFIER | ✔ | `v-on` no longer supports keyCode modifiers | [link](https://v3-migration.vuejs.org/breaking-changes/keycode-modifiers.html) |
|
|
313
312
|
| CUSTOM_DIR | ✔ | Custom directive hook names changed | [link](https://v3-migration.vuejs.org/breaking-changes/custom-directives.html) |
|
|
314
313
|
| ATTR_FALSE_VALUE | ✔ | No longer removes attribute if binding value is boolean `false` | [link](https://v3-migration.vuejs.org/breaking-changes/attribute-coercion.html) |
|