feat(Button): add icon slot (#8783)

This commit is contained in:
neverland 2021-05-30 20:49:21 +08:00 committed by GitHub
parent ba876d286b
commit 36dae5ae8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 39 additions and 8 deletions

View File

@ -89,6 +89,10 @@ export default defineComponent({
return renderLoadingIcon();
}
if (slots.icon) {
return <div class={bem('icon')}>{slots.icon()}</div>;
}
if (props.icon) {
return (
<Icon

View File

@ -143,10 +143,11 @@ app.use(Button);
### Slots
| Name | Description |
| ------- | ------------------- |
| default | Default slot |
| loading | Custom loading icon |
| Name | Description |
| -------------- | ------------------- |
| default | Default slot |
| icon `v3.0.18` | Custom icon |
| loading | Custom loading icon |
### Less Variables

View File

@ -166,10 +166,11 @@ app.use(Button);
### Slots
| 名称 | 说明 |
| ------- | -------------- |
| default | 按钮内容 |
| loading | 自定义加载图标 |
| 名称 | 说明 |
| -------------- | -------------- |
| default | 按钮内容 |
| icon `v3.0.18` | 自定义图标 |
| loading | 自定义加载图标 |
### 样式变量

View File

@ -22,6 +22,21 @@ exports[`should render icon in the right side when setting icon-position to righ
</button>
`;
exports[`should render icon slot correctly 1`] = `
<button type="button"
class="van-button van-button--default van-button--normal"
>
<div class="van-button__content">
<div class="van-button__icon">
Custom Icon
</div>
<span class="van-button__text">
Text
</span>
</div>
</button>
`;
exports[`should render loading slot correctly 1`] = `
<button type="button"
class="van-button van-button--default van-button--normal van-button--loading"

View File

@ -86,3 +86,13 @@ test('should render icon in the right side when setting icon-position to right',
});
expect(wrapper.html()).toMatchSnapshot();
});
test('should render icon slot correctly', () => {
const wrapper = mount(Button, {
slots: {
default: () => 'Text',
icon: () => 'Custom Icon',
},
});
expect(wrapper.html()).toMatchSnapshot();
});