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

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

在这里插入图片描述

源码

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\董鹏超\Desktop\Vue实现前后端分离\笔记\images\aixin3.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

猜你喜欢

转载自blog.csdn.net/qq_45077173/article/details/107546781