30 lines
		
	
	
		
			491 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			491 B
		
	
	
	
		
			Vue
		
	
	
| <template>
 | |
| <div>
 | |
| <md>
 | |
| ## åēæŦ
 | |
| æįŽåį፿ŗã
 | |
| </md>
 | |
|   <Popconfirm title="Are you sure delete this task?" @confirm="confirm" @cancel="cancel" okText="Yes" cancelText="No">
 | |
|     <a href="#">Delete</a>
 | |
|   </Popconfirm>
 | |
| </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import { Popconfirm, Button } from 'antd'
 | |
| export default {
 | |
|   methods: {
 | |
|     confirm (e) {
 | |
|       console.log(e)
 | |
|     },
 | |
|     cancel (e) {
 | |
|       console.log(e)
 | |
|     },
 | |
|   },
 | |
|   components: {
 | |
|     Popconfirm,
 | |
|     AntButton: Button,
 | |
|   },
 | |
| }
 | |
| </script>
 |