10000 Migration build by NataliaTepluhina · Pull Request #1033 · vuejs/docs · GitHub
[go: up one dir, main page]

Skip to content

Migration build #1033

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 20 commits into from
Jun 7, 2021
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use different unicode char for incompatible legend
  • Loading branch information
yyx990803 committed Jun 4, 2021
commit bf973a297d81c380ab7aee68897e82a75db00c1b
14 changes: 7 additions & 7 deletions src/guide/migration/migration-build.md
5BD1
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ Features that start with `COMPILER_` are compiler-specific: if you are using the

- ✔ Fully compatible
- ◐ Partially Compatible with caveats
- Incompatible (warning only)
- Incompatible (warning only)
- ⭘ Compat only (no warning)

### Incompatible
Expand All @@ -259,12 +259,12 @@ Features that start with `COMPILER_` are compiler-specific: if you are using the

| ID | Type | Description | Docs |
| ------------------------------------- | ---- | ------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
| GLOBAL_MOUNT_CONTAINER | | Mounted application does not replace the element it's mounted to | [link](/guide/migration/mount-changes.html) |
| CONFIG_DEVTOOLS | | production devtools is now a build-time flag | [link](https://github.com/vuejs/vue-next/tree/master/packages/vue#bundler-build-feature-flags) |
| COMPILER_V_IF_V_FOR_PRECEDENCE | | v-if and v-for precedence when used on the same element has changed | [link](/guide/migration/v-if-v-for.html) |
| COMPILER_V_IF_SAME_KEY | | v-if branches can no longer have the same key | [link](/guide/migration/key-attribute.html#on-conditional-branches) |
| COMPILER_V_FOR_TEMPLATE_KEY_PLACEMENT | | `<template v-for>` key should now be placed on `<template>` | [link](/guide/migration/key-attribute.html#with-template-v-for) |
| COMPILER_SFC_FUNCTIONAL | | `<template functional>` is no longer supported in SFCs | [link](/guide/migration/functional-components.html#single-file-components-sfcs) | | |
| GLOBAL_MOUNT_CONTAINER | | Mounted application does not replace the element it's mounted to | [link](/guide/migration/mount-changes.html) |
| CONFIG_DEVTOOLS | | production devtools is now a build-time flag | [link](https://github.com/vuejs/vue-next/tree/master/packages/vue#bundler-build-feature-flags) |
| COMPILER_V_IF_V_FOR_PRECEDENCE | | v-if and v-for precedence when used on the same element has changed | [link](/guide/migration/v-if-v-for.html) |
| COMPILER_V_IF_SAME_KEY | | v-if branches can no longer have the same key | [link](/guide/migration/key-attribute.html#on-conditional-branches) |
| COMPILER_V_FOR_TEMPLATE_KEY_PLACEMENT | | `<template v-for>` key should now be placed on `<template>` | [link](/guide/migration/key-attribute.html#with-template-v-for) |
| COMPILER_SFC_FUNCTIONAL | | `<template functional>` is no longer supported in SFCs | [link](/guide/migration/functional-components.html#single-file-components-sfcs) | | |

### Partially Compatible with Caveats

Expand Down
0