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.
35 lines
618 B
35 lines
618 B
<docs>
|
|
---
|
|
order: 4
|
|
title:
|
|
zh-CN: 状态点
|
|
en-US: Status
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
用于表示状态的小圆点。
|
|
|
|
## en-US
|
|
|
|
Standalone badge with status.
|
|
</docs>
|
|
|
|
<template>
|
|
<a-badge status="success" />
|
|
<a-badge status="error" />
|
|
<a-badge status="default" />
|
|
<a-badge status="processing" />
|
|
<a-badge status="warning" />
|
|
<br />
|
|
<a-badge status="success" text="Success" />
|
|
<br />
|
|
<a-badge status="error" text="Error" />
|
|
<br />
|
|
<a-badge status="default" text="Default" />
|
|
<br />
|
|
<a-badge status="processing" text="Processing" />
|
|
<br />
|
|
<a-badge status="warning" text="warning" />
|
|
</template>
|