@vue/compat 3.2.39 → 3.2.41
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 -1
- package/dist/vue.cjs.js +19398 -19378
- package/dist/vue.cjs.prod.js +16811 -16807
- package/dist/vue.esm-browser.js +17913 -17905
- package/dist/vue.esm-browser.prod.js +1 -1
- package/dist/vue.esm-bundler.js +18138 -18140
- package/dist/vue.global.js +17896 -17888
- package/dist/vue.global.prod.js +1 -1
- package/dist/vue.runtime.esm-browser.js +12692 -12696
- package/dist/vue.runtime.esm-browser.prod.js +1 -1
- package/dist/vue.runtime.esm-bundler.js +12894 -12908
- package/dist/vue.runtime.global.js +12675 -12679
- package/dist/vue.runtime.global.prod.js +1 -1
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -311,7 +311,7 @@ Features that start with `COMPILER_` are compiler-specific: if you are using the
|
|
|
311
311
|
| V_ON_KEYCODE_MODIFIER | ✔ | `v-on` no longer supports keyCode modifiers | [link](https://v3-migration.vuejs.org/breaking-changes/keycode-modifiers.html) |
|
|
312
312
|
| CUSTOM_DIR | ✔ | Custom directive hook names changed | [link](https://v3-migration.vuejs.org/breaking-changes/custom-directives.html) |
|
|
313
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) |
|
|
314
|
-
|
|
|
314
|
+
| ATTR_ENUMERATED_COERCION | ✔ | No longer special case enumerated attributes | [link](https://v3-migration.vuejs.org/breaking-changes/attribute-coercion.html) |
|
|
315
315
|
| TRANSITION_GROUP_ROOT | ✔ | `<transition-group>` no longer renders a root element by default | [link](https://v3-migration.vuejs.org/breaking-changes/transition-group.html) |
|
|
316
316
|
| COMPONENT_ASYNC | ✔ | Async component API changed (now requires `defineAsyncComponent`) | [link](https://v3-migration.vuejs.org/breaking-changes/async-components.html) |
|
|
317
317
|
| COMPONENT_FUNCTIONAL | ✔ | Functional component API changed (now must be plain functions) | [link](https://v3-migration.vuejs.org/breaking-changes/functional-components.html) |
|