diff --git a/src/v2/guide/installation.md b/src/v2/guide/installation.md index 92e0ec118a..30ef8d632a 100644 --- a/src/v2/guide/installation.md +++ b/src/v2/guide/installation.md @@ -2,8 +2,8 @@ title: Installation type: guide order: 1 -vue_version: 2.6.14 -gz_size: "33.46" +vue_version: 2.7.0 +gz_size: "36.75" --- ### Compatibility Note @@ -41,20 +41,20 @@ Simply download and include with a script tag. `Vue` will be registered as a glo For prototyping or learning purposes, you can use the latest version with: ``` html - + ``` For production, we recommend linking to a specific version number and build to avoid unexpected breakage from newer versions: ``` html - + ``` If you are using native ES Modules, there is also an ES Modules compatible build: ``` html ``` @@ -84,7 +84,7 @@ Vue provides an [official CLI](https://github.com/vuejs/vue-cli) for quickly sca ## Explanation of Different Builds -In the [`dist/` directory of the NPM package](https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/) you will find many different builds of Vue.js. Here's an overview of the difference between them: +In the [`dist/` directory of the NPM package](https://cdn.jsdelivr.net/npm/vue@2.7.0/dist/) you will find many different builds of Vue.js. Here's an overview of the difference between them: | | UMD | CommonJS | ES Module (for bundlers) | ES Module (for browsers) | | --- | --- | --- | --- | --- | @@ -101,7 +101,7 @@ In the [`dist/` directory of the NPM package](https://cdn.jsdelivr.net/npm/vue@2 - **Runtime**: code that is responsible for creating Vue instances, rendering and patching virtual DOM, etc. Basically everything minus the compiler. -- **[UMD](https://github.com/umdjs/umd)**: UMD builds can be used directly in the browser via a `