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/style.md

446 B

#### 四种样式 共有四种样式 `success`、`info`、`warning`、`error`。 #### More types There are 4 types of Alert: `success`, `info`, `warning`, `error`.
<template>
  <div>
    <a-alert message="Success Text" type="success" />
    <a-alert message="Info Text" type="info" />
    <a-alert message="Warning Text" type="warning" />
    <a-alert message="Error Text" type="error" />
  </div>
</template>