29 lines
		
	
	
		
			415 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			415 B
		
	
	
	
		
			Vue
		
	
	
| <docs>
 | |
| ---
 | |
| order: 0
 | |
| title:
 | |
|   zh-CN: 基本用法
 | |
|   en-US: Basic usage
 | |
| ---
 | |
| 
 | |
| ## zh-CN
 | |
| 
 | |
| 单击图像可以放大显示。
 | |
| 
 | |
| ## en-US
 | |
| 
 | |
| Click the image to zoom in.
 | |
| 
 | |
| </docs>
 | |
| 
 | |
| <template>
 | |
|   <a-image
 | |
|     :width="200"
 | |
|     src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
 | |
|   />
 | |
| </template>
 | |
| <script lang="ts">
 | |
| import { defineComponent } from 'vue';
 | |
| export default defineComponent({});
 | |
| </script>
 |