vue脚手架安装

  • npm官网

  • 然后就是傻瓜式安装,然后将其npm.exe 配置到环境变量里。

  • 查看npm版本

    npm -v
    
  • 安装cnpm(淘宝镜像)

    npm install cnpm -g
    
  • 安装vue

    cnpm install vue
    
  • 安装vue的脚手架

    cnpm install --global vue-cli
    
  • 创建vue项目

    # 创建一个基于 webpack 模板的新项目
    vue init webpack 项目名称
    # 这里需要进行一些配置,默认回车即可
    This will install Vue 2.x version of the template.
    
    For Vue 1.x use: vue init webpack#1.0 my-project
    
    ? Project name my-project
    ? Project description A Vue.js project
    ? Author runoob <test@runoob.com>
    ? Vue build standalone
    ? Use ESLint to lint your code? Yes
    ? Pick an ESLint preset Standard
    ? Setup unit tests with Karma + Mocha? Yes
    ? Setup e2e tests with Nightwatch? Yes
    
       vue-cli · Generated "my-project".
    
       To get started:
    
         cd my-project
         npm install
         npm run dev
    
       Documentation can be found at https://vuejs-templates.github.io/webpack
    
    • 记住4个yes4个no
  • 至此脚手架安装结束

results matching ""

    No results matching ""