52 lines
		
	
	
		
			997 B
		
	
	
	
		
			Markdown
		
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			997 B
		
	
	
	
		
			Markdown
		
	
	
| <cn>
 | |
| #### åįŧååįŧ
 | |
| å¨čžå
ĨæĄä¸æˇģå åįŧæåįŧåžæ ã
 | |
| </cn>
 | |
| 
 | |
| <us>
 | |
| #### prefix and suffix
 | |
| Add prefix or suffix icons inside input.
 | |
| </us>
 | |
| 
 | |
| ```html
 | |
| <template>
 | |
|   <div class="components-input-demo-presuffix">
 | |
|     <a-input placeholder="Basic usage" v-model="userName" ref="userNameInput">
 | |
|       <a-icon slot="prefix" type="user" />
 | |
|       <a-icon v-if="userName" slot="suffix" type="close-circle" @click="emitEmpty" />
 | |
|     </a-input>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   data () {
 | |
|     return {
 | |
|       userName: '',
 | |
|     }
 | |
|   },
 | |
|   methods: {
 | |
|     emitEmpty () {
 | |
|       this.$refs.userNameInput.focus()
 | |
|       this.userName = ''
 | |
|     },
 | |
|   },
 | |
| }
 | |
| </script>
 | |
| <style scoped>
 | |
| .components-input-demo-presuffix .anticon-close-circle {
 | |
|   cursor: pointer;
 | |
|   color: #ccc;
 | |
|   transition: color 0.3s;
 | |
|   font-size: 12px;
 | |
| }
 | |
| .components-input-demo-presuffix .anticon-close-circle:hover {
 | |
|   color: #999;
 | |
| }
 | |
| .components-input-demo-presuffix .anticon-close-circle:active {
 | |
|   color: #666;
 | |
| }
 | |
| </style>
 | |
| ```
 | |
| 
 |