Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,23 @@ type Prefix = string
// prefix = Al
import { AlButton } from 'xx-lib'
```
### `ignoreComponents`

```ts
type IgnoreComponents = string[]
```

跳过组件列表的样式导入。 对于没有样式文件的 Element Plus 组件很有用。
在编写此文档时,仅有“AutoResizer”组件。

```javascript
// format: 'cjs'
import { ElAutoResizer } from 'element-plus'

// ↓ ↓ ↓ ↓ ↓ ↓

import { ElAutoResizer } from 'element-plus'
```

### `defaultLocale`

Expand Down
Loading