# 安装npm环境 ## 安装npm 从https://nodejs.org/en/download/下载并安装 ## 淘宝镜像 ``` npm install -g cnpm --registry=https://registry.npm.taobao.org ``` ## 更换npm ``` npm config set registry https://registry.npm.taobao.org ``` # 安装vue ``` # 最新稳定版 $ npm install vue ``` # 编译 ``` npm install 或 cnpm install ```