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/antdv-demo/docs/notification/demo/update.md

707 B

#### 更新消息内容 可以通过唯一的 key 来更新内容。 #### Update Message Content Update content with unique key.
<template>
  <a-button type="primary" @click="openNotification">
    Open the notification box
  </a-button>
</template>
<script>
const key = 'updatable';
export default {
  methods: {
    openNotification() {
      this.$notification.open({
        key,
        message: 'Notification Title',
        description: 'description.',
      });
      setTimeout(() => {
        this.$notification.open({
          key,
          message: 'New Title',
          description: 'New description.',
        });
      }, 1000);
    },
  },
};
</script>