Vue整合SpringBoot项目实战之Vue+Element-Ui搭建前端项目

Vue整合SpringBoot项目实战之Vue+Element-Ui搭建前端项目

源码(欢迎star):

系列文章:

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Customize configuration

![aixin3](C:Users董鹏超DesktopVue实现前后端分离笔记imagesaixin3.gif)vuetest01
├─ .gitignore
├─ babel.config.js
├─ package-lock.json
├─ package.json
├─ public
│  ├─ favicon.ico
│  └─ index.html
├─ README.md
└─ src
   ├─ App.vue
   ├─ assets
   │  └─ logo.png
   ├─ components
   │  └─ HelloWorld.vue
   ├─ index.vue
   ├─ main.js
   ├─ plugins
   │  ├─ axios.js
   │  └─ element.js
   ├─ router
   │  └─ index.js
   ├─ store
   │  └─ index.js
   └─ views
      ├─ About.vue
      ├─ AddStu.vue
      ├─ Home.vue
      ├─ PageFour.vue
      ├─ StuManage.vue
      └─ UpdStu.vue
经验分享 程序员 微信小程序 职场和发展