This commit is contained in:
shimu
2024-05-21 11:34:38 +08:00
commit 1c0e4b1bf0
70 changed files with 2077 additions and 0 deletions

21
README.md Normal file
View File

@@ -0,0 +1,21 @@
# cms
> cms项目
## Scripts
> 脚本
```json
{
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build --mode=production",
"dev": "npm run serve",
"dist": "vue-cli-service lint && node ./build/index.js",
"lint": "vue-cli-service lint --fix",
"test:unit": "vue-cli-service test:unit",
"pub": "npm publish --registry=http://npm.proxy.zeto.me",
"clean": "npm cache clear --force",
"init": "npm cache clear --force && npm install --registry http://npm.proxy.zeto.me"
}
```