# monomer-web **Repository Path**: zhanyao/monomer-web ## Basic Information - **Project Name**: monomer-web - **Description**: No description available - **Primary Language**: JavaScript - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # monomer-web ## Project setup ``` npm install ``` ### Compiles and hot-reloads for development ``` npm run serve ``` ### Compiles and minifies for production ``` npm run build ``` ### Run your unit tests ``` npm run test:unit ``` ### Run your end-to-end tests ``` npm run test:e2e ``` ### Lints and fixes files ``` npm run lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). ## 目录结构 ``` ├── build // 构建相关   ├── config // 配置相关 ├── src // 源代码 │ ├── api // 所有请求 │   ├── assets // 主题、字体等静态资源 │   ├── components // 全局公用组件 │   ├── directive // 全局指令 │   ├── filtres // 全局 filter │   ├── icons // 项目所有 svg icons │   ├── lang // 国际化 language │   ├── router // 路由 │   ├── store // 全局 store管理 │   ├── styles // 全局样式 │   ├── utils // 全局公用方法 │   ├── vendor // 公用vendor │   ├── views // view │   ├── App.vue // 入口页面 │   ├── main.ts // 入口加载组件 初始化等 │   ├── permission.ts // 权限管理 │   ├── registerServiceWorker.ts // PWA 配置 │   ├── shims-tsx.d.ts // 相关 tsx 模块注入 │ └── shims-vue.d.ts // Vue 模块注入 ├── .browserslistrc // babel-loader 配置 ├── .eslintrc.js // eslint 配置项 ├── .gitignore // git 忽略项 ├── babel.config.js // ├── LICENSE // 开源协议 ├── package.json // ├── package-lock.json // ├── README.en.md // └── README.md // ``` 说明: # 参考 * 后台前端解决方案vue-element-admin的安装及使用:https://blog.csdn.net/qq_36272282/article/details/103936923