|
| 1 | +--- |
| 2 | +title: Migration to Vue 2.7 |
| 3 | +type: guide |
| 4 | +order: 704 |
| 5 | +--- |
| 6 | + |
| 7 | +Despite Vue 3 now being the default version, we understand that there are still many users who have to stay on Vue 2 due to dependency compatibility, browser support requirements, or simply not enough bandwidth to upgrade. In Vue 2.7, we have backported some of the most important features from Vue 3 so that Vue 2 users can benefit from them as well. |
| 8 | + |
| 9 | +## Backported Features |
| 10 | + |
| 11 | +- [Composition API](https://vuejs.org/guide/extras/composition-api-faq.html) |
| 12 | +- SFC [`<script setup>`](https://vuejs.org/api/sfc-script-setup.html) |
| 13 | +- SFC [CSS v-bind](https://vuejs.org/api/sfc-css-features.html#v-bind-in-css) |
| 14 | + |
| 15 | +In addition, the following APIs are also supported: |
| 16 | + |
| 17 | +- `defineComponent()` with improved type inference (compared to `Vue.extend`) |
| 18 | +- `h()`, `useSlot()`, `useAttrs()`, `useCssModules()` |
| 19 | +- `set()`, `del()` and `nextTick()` are also provided as named exports in ESM builds. |
| 20 | +- The `emits` option is also supported, but only for type-checking purposes (does not affect runtime behavior) |
| 21 | + |
| 22 | + 2.7 also supports using ESNext syntax in template expressions. When using a build system, the compiled template render function will go through the same loaders / plugins configured for normal JavaScript. This means if you have configured Babel for `.js` files, it will also apply to the expressions in your SFC templates. |
| 23 | + |
| 24 | +### Notes on API exposure |
| 25 | + |
| 26 | +- In ESM builds, these APIs are provided as named exports (and named exports only): |
| 27 | + |
| 28 | + ```js |
| 29 | + import Vue, { ref } from "vue"; |
| 30 | + |
| 31 | + Vue.ref; // undefined, use named export instead |
| 32 | + ``` |
| 33 | + |
| 34 | +- In UMD and CJS builds, these APIs are exposed as properties on the global `Vue` object. |
| 35 | + |
| 36 | +- When bundling with CJS builds externalized, bundlers should be able to handle ESM interop when externalizing CJS builds. |
| 37 | + |
| 38 | +### Behavior Differences from Vue 3 |
| 39 | + |
| 40 | +The Composition API is backported using Vue 2's getter/setter-based reactivity system to ensure browser compatibility. This means there are some important behavior differences from Vue 3's proxy-based system: |
| 41 | + |
| 42 | +- All [Vue 2 change detection caveats](https://v2.vuejs.org/v2/guide/reactivity.html#Change-Detection-Caveats) still apply. |
| 43 | + |
| 44 | +- `reactive()`, `ref()`, and `shallowReactive()` will directly convert original objects instead of creating proxies. This means: |
| 45 | + |
| 46 | + ```js |
| 47 | + // true in 2.7, false in 3.x |
| 48 | + reactive(foo) === foo; |
| 49 | + ``` |
| 50 | + |
| 51 | +- `readonly()` **does** create a separate object, but it won't track newly added properties and does not work on arrays. |
| 52 | + |
| 53 | +- Avoid using arrays as root values in `reactive()` because without property access the array's mutation won't be tracked (this will result in a warning). |
| 54 | + |
| 55 | +- Reactivity APIs ignore properties with symbol keys. |
| 56 | + |
| 57 | +In addition, the following features are explicitly **NOT** ported: |
| 58 | + |
| 59 | +- ❌ `createApp()` (Vue 2 doesn't have isolated app scope) |
| 60 | +- ❌ Top-level `await` in `<script setup>` (Vue 2 does not support async component initialization) |
| 61 | +- ❌ TypeScript syntax in template expressions (incompatible w/ Vue 2 parser) |
| 62 | +- ❌ Reactivity transform (still experimental) |
| 63 | +- ❌ `expose` option is not supported for options components (but `defineExpose()` is supported in `<script setup>`). |
| 64 | + |
| 65 | +## Upgrade Guide |
| 66 | + |
| 67 | +### Vue CLI / webpack |
| 68 | + |
| 69 | +1. Upgrade local `@vue/cli-xxx` dependencies the latest version in your major version range (if applicable): |
| 70 | + |
| 71 | + - `~4.5.18` for v4 |
| 72 | + - `~5.0.6` for v5 |
| 73 | + |
| 74 | +2. Upgrade `vue` to `^2.7.0`. You can also remove `vue-template-compiler` from the dependencies - it is no longer needed in 2.7. |
| 75 | + |
| 76 | + Note: if you are using `@vue/test-utils`, you will need to keep `vue-template-compiler` in the dependencies because test utils rely on some APIs only exposed in this package. |
| 77 | + |
| 78 | +3. Check your package manager lockfile to ensure the following dependencies meet the version requirements. They may be transitive dependencies not listed in `package.json`. |
| 79 | + |
| 80 | + - `vue-loader`: `^15.10.0` |
| 81 | + - `vue-demi`: `^0.13.1` |
| 82 | + |
| 83 | + If not, you will need to remove `node_modules` and the lockfile and perform a fresh install to ensure they are bumped to the latest version. |
| 84 | + |
| 85 | +4. If you were previously using [`@vue/composition-api`](https://github.com/vuejs/composition-api), update imports from it to `vue` instead. Note that some APIs exported by the plugin, e.g. `createApp`, are not ported in 2.7. |
| 86 | + |
| 87 | +5. Update `eslint-plugin-vue` to latest version (9+) if you run into unused variable lint errors when using `<script setup>`. |
| 88 | + |
| 89 | +6. The SFC compiler for 2.7 now uses PostCSS 8 (upgraded from 7). PostCSS 8 should be backwards compatible with most plugins, but the upgrade **may** cause issues if you were previously using a custom PostCSS plugin that can only work with PostCSS 7. In such cases, you will need to upgrade the relevant plugins to their PostCSS 8 compatible versions. |
| 90 | + |
| 91 | +### Vite |
| 92 | + |
| 93 | +2.7 support for Vite is provided via a new plugin: [@vitejs/plugin-vue2](https://github.com/vitejs/vite-plugin-vue2). This new plugin requires Vue 2.7 or above and supersedes the existing [vite-plugin-vue2](https://github.com/underfin/vite-plugin-vue2). |
| 94 | + |
| 95 | +Note that the new plugin does not handle Vue-specific JSX / TSX transform, which is intentional. Vue 2 JSX / TSX transform for Vite is handled in a separate, dedicated plugin: [@vitejs/plugin-vue2-jsx](https://github.com/vitejs/vite-plugin-vue2-jsx). |
| 96 | + |
| 97 | +### Volar Compatibility |
| 98 | + |
| 99 | +2.7 ships improved type definitions so it is no longer necessary to install `@vue/runtime-dom` just for Volar template type inference support. All you need now is the following config in `tsconfig.json`: |
| 100 | + |
| 101 | +```json |
| 102 | +{ |
| 103 | + // ... |
| 104 | + "vueCompilerOptions": { |
| 105 | + "target": 2.7 |
| 106 | + } |
| 107 | +} |
| 108 | +``` |
| 109 | + |
| 110 | +### Devtools Support |
| 111 | + |
| 112 | +Vue Devtools 6.2.0 has added support for inspecting 2.7 Composition API state, but the extensions may still need a few days to go through review on respective publishing platforms. |
| 113 | + |
| 114 | +## Implications of the 2.7 Release |
| 115 | + |
| 116 | +As stated before, 2.7 is the final minor release of Vue 2.x. After this release, Vue 2 has entered LTS (long-term support) which lasts for 18 months from now, and will no longer receive new features. |
| 117 | + |
| 118 | +This means **Vue 2 will reach End of Life by the end of 2023**. We believe this should provide plenty of time for most of the ecosystem to migrate over to Vue 3. However, we also understand that there could be teams or projects that cannot upgrade by this timeline while still need to fullfil security and compliance requirements. We are planning to provide extended support for Vue 2 for teams with such needs - if your team expects to be using Vue 2 beyond end of 2023, make sure to plan head and register your interest [here](https://airtable.com/shrj37Zf4ZIfrxFzh). |
0 commit comments