You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.0 KiB
1.0 KiB
SOP Admin 前端vue实现
前提:先安装好npm,npm安装教程
- 启动服务端程序,运行
SopAdminServerApplication.java
cd sop-admin-vue
- 执行
npm install --registry=https://registry.npm.taobao.org
- 执行
npm run dev
,访问http://localhost:9528/
,用户名密码:admin/123456
# 建议不要用cnpm 安装有各种诡异的bug 可以通过如下操作解决npm速度慢的问题
npm install --registry=https://registry.npm.taobao.org
# 开发调试 localhost:9528
npm run dev
# 打包发布
npm run build:prod
# Build for production and view the bundle analyzer report
npm run build:prod --report
- 修改端口号:打开
vue.config.js
,找到port
属性
打包放入到服务端步骤
如果想要把vue打包放到服务端,步骤如下:
- 执行
npm run build:prod
进行打包,结果在dest下 - 打包完成后,把dest中的所有文件,放到
sop-admin-server/src/main/resources/public
下