38 lines
		
	
	
		
			699 B
		
	
	
	
		
			Markdown
		
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			699 B
		
	
	
	
		
			Markdown
		
	
	
| 
 | |
| <cn>
 | |
| #### ๅ
ถไปๆ็คบ็ฑปๅ
 | |
| ๅ
ๆฌๆๅใๅคฑ่ดฅใ่ญฆๅใ
 | |
| </cn>
 | |
| 
 | |
| <us>
 | |
| #### Other types of message
 | |
| Messages of success, error and warning types.
 | |
| </us>
 | |
| 
 | |
| ```html
 | |
| <template>
 | |
|   <div>
 | |
|     <a-button @click="success">Success</a-button>
 | |
|     <a-button @click="error">Error</a-button>
 | |
|     <a-button @click="warning">Warning</a-button>
 | |
|   </div>
 | |
| </template>
 | |
| <script>
 | |
|   import { message } from 'antd'
 | |
|   export default {
 | |
|     methods: {
 | |
|       success () {
 | |
|         message.success('This is a message of success');
 | |
|       },
 | |
|       error () {
 | |
|         message.error('This is a message of error');
 | |
|       },
 | |
|       warning () {
 | |
|         message.warning('This is message of warning');
 | |
|       },
 | |
|     }
 | |
|   }
 | |
| </script>
 | |
| ```
 | |
| 
 |