diff --git a/assets/diagrams.sketch b/assets/diagrams.sketch index f02fde9ad1..fba8788e73 100644 Binary files a/assets/diagrams.sketch and b/assets/diagrams.sketch differ diff --git a/src/.vuepress/public/images/lifecycle.png b/src/.vuepress/public/images/lifecycle.png index 95af62d570..36dd710759 100644 Binary files a/src/.vuepress/public/images/lifecycle.png and b/src/.vuepress/public/images/lifecycle.png differ diff --git a/src/guide/migration/introduction.md b/src/guide/migration/introduction.md index 1d7850b407..c26093e62e 100644 --- a/src/guide/migration/introduction.md +++ b/src/guide/migration/introduction.md @@ -39,6 +39,7 @@ The following consists a list of breaking changes from 2.x: - `v-enter` -> `v-enter-from` - `v-leave` -> `v-leave-from` - [Component watch option](/api/options-data.html#watch) and [instance method `$watch`](/api/instance-methods.html#watch) no longer supports dot-delimited string paths, use a computed function as the parameter instead +- In Vue 2.x, application root container's `outerHTML` is replaced with root component template (or eventually compiled to a template, if root component has no template/render option). Vue 3.x now uses application container's `innerHTML` instead. ### Removed