# web-common-modules **Repository Path**: white001/web-common-modules ## Basic Information - **Project Name**: web-common-modules - **Description**: web管理端通用代码模块 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-01-01 - **Last Updated**: 2023-09-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 公用模块 ## Project setup ``` npm install 如果报错:unable to resolve dependency tree则执行 npm i --legacy-peer-deps ``` 如果速度过慢可以使用淘宝源下载: ``` npm install --registry=https://registry.npm.taobao.org ``` ### 首次拉取子模块 submodules ``` git submodule update --init --recursive ``` ### 更新子模块 (适用于git 1.8.2及以上版本) ``` git submodule update --recursive --remote ``` ### 更新子模块(适用于git 1.7.3及以上版本) ``` git submodule update --recursive ``` 或者 ``` git pull --recurse-submodules ``` ## 使用文档 https://gfn0s2.yuque.com/books/share/a6f7f79a-8c79-4bce-b7bc-b68f624ba02e ### Compiles and hot-reloads for development ``` npm run serve ``` ### Compiles and minifies for production ``` npm run build ``` ### Lints and fixes files ``` npm run lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/).