vueのインストールについて話すvue-element-admin

序文

簡単に手に入れるのではなく、ただ待って見てください。


目的

vue-element-adminの初期インストール

1つ、使用とシーン

# 克隆项目
git clone https://github.com/PanJiaChen/vue-element-admin.git

# 进入项目目录
cd vue-element-admin

# 安装依赖
npm install

# 建议不要用 cnpm 安装 会有各种诡异的bug 可以通过如下操作解决 npm 下载速度慢的问题
npm install --registry=https://registry.npm.taobao.org

# 本地开发 启动项目
npm run dev

参照

https://panjiachen.github.io/vue-element-admin-site/zh/guide/#Install npm

ピット

npminstallのインストールで発生した問題は解決に失敗しました

npm install
npm ERR! Error while executing:
npm ERR! C:\Program Files\Git\cmd\git.EXE ls-remote -h -t  https://github.com/openplans/Leaflet.AnimatedMarker.git 

npm ERR!
npm ERR! fatal: unable to access ' https://github.com/openplans/Leaflet.AnimatedMarker.git/ 

': error setting certificate verify locations:
npm ERR!   CAfile: E:/Program Files/Git/mingw32/ssl/certs/ca-bundle.crt
npm ERR!   CApath: none
npm ERR!
npm ERR! exited with error code: 128

npm ERR! A complete log of this run can be found in:
npm ERR!    

解决办法  
git config --global http.sslverify "false"  
执行后重新
npm install

もっとコメントを残して、もっと好きに。あなたの唯一のサポートは、私がそれに固執する動機です。

おすすめ

転載: blog.csdn.net/aa327056812/article/details/110736148
おすすめ