赞
踩
vue create supermall
vue : 无法加载文件 C:\Users\78571\AppData\Roaming\npm\vue.ps1,
git clone https://github.com/guoruijava/supermall.git
git config --global user.email "785713526@qq.com"
git commit -m '初始化项目'
git push
报错
fatal: unable to access 'https://github.com/guoruijava/supermall.git/': OpenSSL SSL_read: Connection was aborted, errno 10053
解决方法:
git config --global http.sslVerify false
亲测有效!
git remote add origin https://github.com/guoruijava/supermall.git
git push -u origin master
上传到GitHub,报错
error: src refspec master does not match any error:
npm install
安装前端环境。
1、 asserts – 资源文件夹
2、common – 公共的js文件
3、network – 网络相关的
4、components – 组件
5、store – 状态管理
6、views – 主要的视图
7、router – 路由
1、normalize.css
2、base.css
创建vue.config.js文件
module.exports = {
configureWebpack: {
resolve: {
alias: {
'views': '@/views',
'components': '@/components',
'network': '@/network',
'common': '@/common',
'assets': '@/assets',
}
}
}
}
注意,vue中为src配置了@的别名。
.editorconfig文件的目的是 对代码进行一个统一的风格处理。
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
npm install vue-router --save
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。