npm -v
vue --vserion
# 全局安装vue
npm install -g @vue/cli
# vue升级
npm update -g @vue/cli
# 通过使用图像化界面vue ui来创建项目
vue ui
# 通过命令创建项目
vue create hello-world
# 安装插件命令
npm install vuex --save
npm install --save axios
npm install element-ui --save
npm install swiper@6.8.4
# 安装路由
npm install vue-router --save
# 查看全局版本号
npm list swiper -g
# 查看远端仓库内的可用版本号
npm info swiper
npm view swiper versions --json
# 临时使用
### 本次从淘宝仓库源下载
npm --registry=https://registry.npm.taobao.org install
### 安装cnpm命令,不会改变npm的源
npm install -g cnpm --registry=https://registry.npm.taobao.org
# 修改npm源
### 设置淘宝源
npm config set registry https://registry.npm.taobao.org
### 查看源,可以看到设置过的所有的源
npm config get registry
# 修改编辑 ~/.npmrc 加入下面内容
registry = https://registry.npm.taobao.org
vue基本命令
最新推荐文章于 2024-11-04 14:35:19 发布