Vue.js 环境安装
🏷️ Vue.js
安装 nodejs
切换到 taobao 的 npm 镜像
PowerShell 中执行如下命令,使用 taobao 镜像
bash
npm install nrm -g --registry=https://registry.npm.taobao.org
nrm use taobao
nrm ls
npm install cnpm -g
安装 vue-cli
bash
cnpm install -g vue-cli
vue
生成项目结构
bash
vue init webpack firstVue
之后根据提示设置
启动命令
bash
cd firstVue
npm install
npm run dev
部署
bash
npm run build
将 dist 目录的文件打包上传到服务器根目录即可