vue wms
1.0.0
A website management system based on
vue.js
element ui
# 进入项目根目录
cd **
# 安装依赖文件
npm install
# 启动本地开发环境
npm run start
# 发布开发环境
npm run dev
# 发布测试环境
npm run test
# 发布生产环境
npm run pro
vue
vue-router
axios
webpack
element-ui
store.js
underscore.js
. ├── README.md // Description file ├── dist // Project release output directory ├── config // Project environment configuration directory ├── static // Static resource directory ├── build // Release build configuration │ ├ ── build.js // Build and release project entry file │ ├── dev-server.js // Developed service configuration │ ├── webpack-dev-conf.js // Development Webpack configuration file │ ├── webpack-prod-conf.js // Production Webpack configuration file │ ├── webpack-base-conf.js // Basic Webpack configuration file ├── package.json // Project dependency configuration file ├── src // Project source code directory │ ├── assets // css js and image resources │ ├── components // Various components │ ├── views // Various pages │ ├── service // Various services │ │ ├── ajax.js // Ajax request encapsulation │ │ ├─ ─ config.js // Project configuration │ │ ├── filters.js // Filter │ │ ├── interceptor.js // Interceptor │ │ ├── router.js // Routing configuration │ │ └── util.js // Basic tool │ ├── App.vue // Root component │ └── main.js // Webpack precompiled entry ├── index.html // Project entry file.