当前位置:   article > 正文

Vue基础知识总结 13:从零开始搭建Vue项目_vue从零开始

vue从零开始

一、Vue思维导图

在这里插入图片描述

二、创建项目

vue create supermall

1、报错。

vue : 无法加载文件 C:\Users\78571\AppData\Roaming\npm\vue.ps1,
在这里插入图片描述

2、开始处搜索powershell,以管理员的身份运行

在这里插入图片描述

3、输入下面的指令:set-ExecutionPolicy RemoteSigned

在这里插入图片描述

4、再次创建项目,成功!

在这里插入图片描述

三、GitHub托管代码

1、创建仓库

在这里插入图片描述

2、GitHub仓库创建成功

在这里插入图片描述

四、项目提交到GitHub

1、第一种方式

  1. git clone https://github.com/guoruijava/supermall.git
  2. 登录 git config --global user.email "785713526@qq.com"
  3. git commit -m '初始化项目'
  4. 提交到服务器 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

亲测有效!

2、第二种方式

  1. git remote add origin https://github.com/guoruijava/supermall.git
  2. 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 – 路由

在这里插入图片描述

六、引入两个css文件

1、normalize.css
2、base.css

七、别名的配置

创建vue.config.js文件

module.exports = {
    configureWebpack: {
      resolve: {
        alias: {
          'views': '@/views',
          'components': '@/components',
          'network': '@/network',
          'common': '@/common',
          'assets': '@/assets',
        }
      }
    }
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

注意,vue中为src配置了@的别名。

八、拷贝.editorconfig文件到新项目中

.editorconfig文件的目的是 对代码进行一个统一的风格处理。

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

九、安装路由

npm install vue-router --save

十、关注公众号哪吒编程,回复1024,获取Java学习资料,还有不定期的送书活动

  1. 微信小程序开发从入门到实战
  2. Go语言从基础到中台微服务实战开发
  3. 一步到位!Java程序设计
  4. Node+MongoDB+React项目实战开发
    在这里插入图片描述
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/76738
推荐阅读
相关标签
  

闽ICP备14008679号