ant-design-vue/components/message/demo/other.md

699 B

#### 其他提示类型 包括成功、失败、警告。 #### Other types of message Messages of success, error and warning types.
<template>
  <div>
    <a-button @click="success">Success</a-button>
    <a-button @click="error">Error</a-button>
    <a-button @click="warning">Warning</a-button>
  </div>
</template>
<script>
  import { message } from 'antd'
  export default {
    methods: {
      success () {
        message.success('This is a message of success');
      },
      error () {
        message.error('This is a message of error');
      },
      warning () {
        message.warning('This is message of warning');
      },
    }
  }
</script>