723 B
		
	
	
	
	
			
		
		
	
	
			723 B
		
	
	
	
	
			
				
#### 自定义图标
图标可以被自定义。
#### Customized Icon
The icon can be customized to any vue node or (h) => vue node.
	<template>
  <a-button type="primary" @click="openNotification">Open the notification box</a-button>
</template>
<script>
  import { notification } from 'antd'
  export default {
    methods: {
      openNotification () {
        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.',
          icon: <a-icon type="smile-circle" style="color: #108ee9" />,
        });
      },
    }
  }
</script>