38 lines
		
	
	
		
			581 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			581 B
		
	
	
	
		
			Vue
		
	
	
<docs>
 | 
						|
---
 | 
						|
order: 7
 | 
						|
title:
 | 
						|
  zh-CN: 自定义 icon
 | 
						|
  en-US: Custom icon
 | 
						|
---
 | 
						|
 | 
						|
## zh-CN
 | 
						|
 | 
						|
自定义 icon。
 | 
						|
 | 
						|
## en-US
 | 
						|
 | 
						|
Custom icon.
 | 
						|
 | 
						|
</docs>
 | 
						|
 | 
						|
<template>
 | 
						|
  <a-result title="Great, we have done all the operations!">
 | 
						|
    <template #icon>
 | 
						|
      <smile-twoTone />
 | 
						|
    </template>
 | 
						|
    <template #extra>
 | 
						|
      <a-button type="primary">Next</a-button>
 | 
						|
    </template>
 | 
						|
  </a-result>
 | 
						|
</template>
 | 
						|
<script lang="ts">
 | 
						|
import { SmileTwoTone } from '@ant-design/icons-vue';
 | 
						|
import { defineComponent } from 'vue';
 | 
						|
export default defineComponent({
 | 
						|
  components: {
 | 
						|
    SmileTwoTone,
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 |