feat(Step): add finish-icon slot (#8240)

This commit is contained in:
neverland 2021-02-28 19:34:13 +08:00 committed by GitHub
parent 2ae7c9b2ed
commit 4a68210c4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 13 deletions

View File

@ -55,13 +55,16 @@ export default createComponent({
);
}
if (this.status === 'finish' && finishIcon) {
const finishIconSlot = this.slots('finish-icon');
if (this.status === 'finish' && (finishIcon || finishIconSlot)) {
return (
<Icon
class={bem('icon', 'finish')}
name={finishIcon}
color={activeColor}
/>
finishIconSlot || (
<Icon
class={bem('icon', 'finish')}
name={finishIcon}
color={activeColor}
/>
)
);
}

View File

@ -79,10 +79,11 @@ export default {
### Step Slots
| Name | Description |
| ------------- | -------------------- |
| active-icon | Custom active icon |
| inactive-icon | Custom inactive icon |
| Name | Description |
| --------------------- | -------------------- |
| active-icon | Custom active icon |
| inactive-icon | Custom inactive icon |
| finish-icon `v2.12.7` | Custom finish icon |
### Steps Events

View File

@ -89,10 +89,11 @@ export default {
### Step Slots
| 名称 | 说明 |
| ------------- | -------------------- |
| active-icon | 自定义激活状态图标 |
| 名称 | 说明 |
| --- | --- |
| active-icon | 自定义激活状态图标 |
| inactive-icon | 自定义未激活状态图标 |
| finish-icon `v2.12.7` | 自定义已完成步骤对应的底部图标,优先级高于 `inactive-icon` |
### Steps Events