VUE+SpringBoot环境准备

一、nodejs下载地址
  官网:https://nodejs.org/zh-cn/
  其它版本:https://nodejs.org/zh-cn/download/releases/
  源码地址:https://github.com/nodejs
二、vscode下载地址
  官网:https://code.visualstudio.com/
三、apache-maven下载地址
  官网:http://archive.apache.org/dist/maven/maven-3/
四、IDEA下载地址
  官网:https://www.jetbrains.com/idea/download
注意:maven版本要与idea版本相匹配,否则在idea启动项目会报错

五、目录说明

#VScode+Vue
    ├─public                 
    │      favicon.ico
    │      index.html 
    ├─theme             //element-ui的项目自定义主题    
    │      fonts
    │      index.css       
    └─src  
        │  App.vue
        │  main.js
        │  
        │  store.js          状态管理器
        ├─api
        │      api.js        与后台交互的接口合集
        │      index.js     
        ├─img                 图片
        ├─components         项目中自定义的组件
        │      identifyInput.vue    
        ├─scss               项目less文件
        │      aweb-variables.scss
        │      aweb.scss      
        ├─router            路由
        │      index.js
        │      
        ├─utils
        │      global.js               全局变量
        │      common.js               项目级通用接口
        └─views    项目所有页面
                    │  404.vue
                    │  Layout.vue   首页
                    │  Login.vue
                    │
                    ├─example  案例模块
                    │      changepw.vue
                    │      table.vue
                    │      tree.vue
                    │
                    ├─form    表单模块
                    │      form.vue
                    │
                    └─spa    某模块
                            spa.vue
    │  babel.config.
    │  buildPage.js          快速原型页面打包脚本
    |  element-variables.scss
    │  package.json
    │  postcss.config.js       配置autoprefix插件
    │  README.md
    │  server.js               虚拟后台
    │  vue.config.js           打包编译的配置文件

 

posted @ 2022-08-21 21:04  借你耳朵说爱你  阅读(50)  评论(0编辑  收藏  举报