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.
38 lines
694 B
38 lines
694 B
<docs>
|
|
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 其他提示类型
|
|
en-US: Other types of message
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
包括成功、失败、警告。
|
|
|
|
## en-US
|
|
|
|
Messages of success, error and warning types.
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<a-space>
|
|
<a-button @click="success">Success</a-button>
|
|
<a-button @click="error">Error</a-button>
|
|
<a-button @click="warning">Warning</a-button>
|
|
</a-space>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { message } from 'ant-design-vue';
|
|
const success = () => {
|
|
message.success('This is a success message');
|
|
};
|
|
const error = () => {
|
|
message.error('This is an error message');
|
|
};
|
|
const warning = () => {
|
|
message.warning('This is a warning message');
|
|
};
|
|
</script>
|