mirror of
https://github.com/youzan/vant.git
synced 2025-10-20 10:44:59 +00:00
[new feature] Loading: add default slot
This commit is contained in:
@@ -42,11 +42,12 @@ function Loading(
|
||||
);
|
||||
|
||||
return (
|
||||
<div class={bem([type])} style={style} {...inherit(ctx, true)}>
|
||||
<span class={bem('spinner', type)}>
|
||||
<div class={bem([type])} {...inherit(ctx, true)}>
|
||||
<span class={bem('spinner', type)} style={style}>
|
||||
{Spin}
|
||||
{Circular}
|
||||
</span>
|
||||
{slots.default && <span class={bem('text')}>{slots.default()}</span>}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user