30 lines
		
	
	
		
			620 B
		
	
	
	
		
			Markdown
		
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			620 B
		
	
	
	
		
			Markdown
		
	
	
| 
 | ||
| <cn>
 | ||
| #### åēæŦ
 | ||
| æįŽåį፿ŗīŧ4.5 į§åčĒå¨å
ŗéã
 | ||
| </cn>
 | ||
| 
 | ||
| <us>
 | ||
| #### Basic
 | ||
| The simplest usage that close the notification box after 4.5s.
 | ||
| </us>
 | ||
| 
 | ||
| ```html
 | ||
| <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.',
 | ||
|         });
 | ||
|       },
 | ||
|     }
 | ||
|   }
 | ||
| </script>
 | ||
| ```
 | ||
| 
 |