2024-07-14 14:51:10 +00:00
|
|
|
# @vben/constants
|
|
|
|
|
2024-07-30 13:05:03 +00:00
|
|
|
用于多个 `app` 公用的常量,继承了 `@vben-core/shared/constants` 的所有能力。业务上有通用常量可以放在这里。
|
2024-07-14 14:51:10 +00:00
|
|
|
|
|
|
|
## 用法
|
|
|
|
|
|
|
|
### 添加依赖
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# 进入目标应用目录,例如 apps/xxxx-app
|
|
|
|
# cd apps/xxxx-app
|
2024-08-14 12:37:21 +00:00
|
|
|
pnpm add @vben/constants
|
2024-07-14 14:51:10 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### 使用
|
|
|
|
|
|
|
|
```ts
|
2024-07-30 13:05:03 +00:00
|
|
|
import { DEFAULT_HOME_PATH } from '@vben/constants';
|
2024-07-14 14:51:10 +00:00
|
|
|
```
|