Skip to content

Commit 96b6721

Browse files
committed
feat: add links to migration build page
1 parent d3f7da2 commit 96b6721

File tree

3 files changed

+52
-48
lines changed

3 files changed

+52
-48
lines changed

src/.vuepress/config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ const sidebar = {
171171
],
172172
migration: [
173173
'/guide/migration/introduction',
174+
'/guide/migration/migration-build',
174175
{
175176
title: 'Details',
176177
collapsable: false,

src/guide/migration/introduction.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ New to Vue.js? Check out our [Essentials Guide](/guide/introduction.html) to get
77
This guide is primarily for users with prior Vue 2 experience who want to learn about the new features and changes in Vue 3. **This is not something you have to read from top to bottom before trying out Vue 3.** While it looks like a lot has changed, a lot of what you know and love about Vue is still the same; but we wanted to be as thorough as possible and provide detailed explanations and examples for every documented change.
88

99
- [Quickstart](#quickstart)
10+
- [Migration Build](#migration-build)
1011
- [Notable New Features](#notable-new-features)
1112
- [Breaking Changes](#breaking-changes)
1213
- [Supporting Libraries](#supporting-libraries)
@@ -20,6 +21,8 @@ Start learning Vue 3 at [Vue Mastery](https://www.vuemastery.com/courses-path/vu
2021

2122
## Quickstart
2223

24+
If you want to quickly try out Vue 3 in a new project:
25+
2326
- Via CDN: `<script src="https://unpkg.com/vue@next"></script>`
2427
- In-browser playground on [Codepen](https://codepen.io/yyx990803/pen/OJNoaZL)
2528
- In-browser Sandbox on [CodeSandbox](https://v3.vue.new)
@@ -37,6 +40,10 @@ Start learning Vue 3 at [Vue Mastery](https://www.vuemastery.com/courses-path/vu
3740
# select vue 3 preset
3841
```
3942

43+
## Migration Build
44+
45+
If you have an existing Vue 2 project or library that you intend to upgrade to Vue 3, we provide a build of Vue 3 that offers Vue 2 compatible APIs. Check out the [Migration Build](./migration-build.html) page for more details.
46+
4047
## Notable New Features
4148

4249
Some of the new features to keep an eye on in Vue 3 include:
@@ -53,10 +60,6 @@ Some of the new features to keep an eye on in Vue 3 include:
5360

5461
## Breaking Changes
5562

56-
::: info INFO
57-
We are still working on a dedicated Migration Build of Vue 3 with Vue 2 compatible behavior and runtime warnings of incompatible usage. If you are planning to migrate a non-trivial Vue 2 app, we strongly recommend waiting for the Migration Build for a smoother experience.
58-
:::
59-
6063
The following consists a list of breaking changes from 2.x:
6164

6265
### Global API

0 commit comments

Comments
 (0)