命令行创建vue项目
1 | vue init webpack my-project |
出现的问题
1 | vue-cli * faild to download repo vuejs-templates/webpack:unable to verify the first certificate. |
解决办法
- github上下载要初始化的模板https://github.com/vuejs-templates/webpack,或者直接用git去clone你要的模板;
1
git clone https://github.com/vuejs-templates/webpack.git
- 手动将下载好的模板webpack压缩包解压,如果是git clone的,则不用解压;
- 将文件夹webpack放到c:/users/administrator/.vue-templates文件夹下面;
- 执行 vue init webpack my-project –offline (project是项目名)。
参考:解决vue-cli不能初始化webpack模板的问题