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

28 lines
514 B
Markdown
Raw Normal View History

2018-02-06 08:43:59 +00:00
<cn>
#### 修改延时
自定义时长 `10s`,默认时长为 `3s`
</cn>
<us>
#### Customize duration
Customize message display duration from default `3s` to `10s`.
</us>
2019-10-09 10:32:23 +00:00
```tpl
2018-02-06 08:43:59 +00:00
<template>
<a-button @click="success">Customized display duration</a-button>
</template>
<script>
2019-09-28 12:45:07 +00:00
export default {
methods: {
success() {
this.$message.success(
'This is a prompt message for success, and it will disappear in 10 seconds',
10,
);
},
2018-03-20 13:48:01 +00:00
},
2019-09-28 12:45:07 +00:00
};
2018-02-06 08:43:59 +00:00
</script>
```