feat: update empty
parent
5a627b3d8b
commit
5568be2fcb
|
@ -51,13 +51,13 @@ const Empty = {
|
||||||
{imageNode}
|
{imageNode}
|
||||||
</div>
|
</div>
|
||||||
{des && <p class={`${prefixCls}-description`}>{des}</p>}
|
{des && <p class={`${prefixCls}-description`}>{des}</p>}
|
||||||
{this.$slots.default && <div class={`${prefixCls}-footer`}>{this.$slots.default}</div>}
|
{this.$slots.default && <div class={`${prefixCls}-footer`}>{this.$slots.default()}</div>}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
return <LocaleReceiver componentName="Empty" scopedSlots={{ default: this.renderEmpty }} />;
|
return <LocaleReceiver componentName="Empty" children={this.renderEmpty} />;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,3 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<a-empty />
|
||||||
<a-alert message="Warning text" banner />
|
|
||||||
<br />
|
|
||||||
<a-alert
|
|
||||||
message="Very long warning text warning text text text text text text text"
|
|
||||||
banner
|
|
||||||
closable
|
|
||||||
/>
|
|
||||||
<br />
|
|
||||||
<a-alert :show-icon="false" message="Warning text without icon" banner />
|
|
||||||
<br />
|
|
||||||
<a-alert type="error" message="Error text" banner />
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue