You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/alert/demo/banner.vue

31 lines
598 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<docs>
---
order: 6
title:
zh-CN: 顶部公告
en-US: Banner
---
## zh-CN
最简单的用法适用于简短的警告提示
## en-US
Display Alert as a banner at top of page.
</docs>
<template>
<a-space direction="vertical" style="width: 100%">
<a-alert message="Warning text" banner />
<a-alert
message="Very long warning text warning text text text text text text text"
banner
closable
/>
<a-alert :show-icon="false" message="Warning text without icon" banner />
<a-alert type="error" message="Error text" banner />
</a-space>
</template>