ant-design-vue/antdv-demo/docs/notification/demo/basic.md

700 B
Raw Blame History

#### åŸēæœŦ æœ€įŽ€å•įš„į”¨æŗ•īŧŒ4.5 į§’åŽč‡ĒåŠ¨å…ŗé—­ã€‚ #### Basic The simplest usage that close the notification box after 4.5s.
<template>
  <a-button type="primary" @click="openNotification">
    Open the notification box
  </a-button>
</template>
<script>
export default {
  methods: {
    openNotification() {
      this.$notification.open({
        message: 'Notification Title',
        description:
          'This is the content of the notification. This is the content of the notification. This is the content of the notification.',
        onClick: () => {
          console.log('Notification Clicked!');
        },
      });
    },
  },
};
</script>