Vue.js 安装

1、独立版本

我们可以在 Vue.js 的官网上直接下载 vue.min.js 并用 <script> 标签引入。

下载 Vue.js


2、使用 CDN 方法

以下推荐国外比较稳定的两个 CDN,国内还没发现哪一家比较好,目前还是建议下载到本地。


3、NPM 方法

由于 npm 安装速度慢,本教程使用了淘宝的镜像及其命令 cnpm,安装使用介绍参照:使用淘宝 NPM 镜像

npm 版本需要大于 3.0,如果低于此版本需要升级它:

  1. # 查看版本
  2. $ npm -v
  3. 2.3.0
  4.  
  5. #升级 npm
  6. cnpm install npm -g
  7.  
  8.  
  9. # 升级或安装 cnpm
  10. npm install cnpm -g

在用 Vue.js 构建大型应用时推荐使用 NPM 安装:

  1. # 最新稳定版
  2. $ cnpm install vue

命令行工具

Vue.js 提供一个官方命令行工具,可用于快速搭建大型单页应用。

  1. # 全局安装 vue-cli
  2. $ cnpm install --global vue-cli
  3. # 创建一个基于 webpack 模板的新项目
  4. $ vue init webpack my-project
  5. # 这里需要进行一些配置,默认回车即可
  6. This will install Vue 2.x version of the template.
  7.  
  8. For Vue 1.x use: vue init webpack#1.0 my-project
  9.  
  10. ? Project name my-project
  11. ? Project description A Vue.js project
  12. ? Author jishuchi <test@jishuchi.com>
  13. ? Vue build standalone
  14. ? Use ESLint to lint your code? Yes
  15. ? Pick an ESLint preset Standard
  16. ? Setup unit tests with Karma + Mocha? Yes
  17. ? Setup e2e tests with Nightwatch? Yes
  18.  
  19. vue-cli · Generated "my-project".
  20.  
  21. To get started:
  22.  
  23. cd my-project
  24. npm install
  25. npm run dev
  26.  
  27. Documentation can be found at https://vuejs-templates.github.io/webpack

进入项目,安装并运行:

  1. $ cd my-project
  2. $ cnpm install
  3. $ cnpm run dev
  4. DONE Compiled successfully in 4388ms
  5.  
  6. > Listening at http://localhost:8080

成功执行以上命令后访问 http://localhost:8080/ ,输出结果如下所示:

Vue.js 安装 - 图1

注意:Vue.js 不支持 IE8 及其以下 IE 版本。