41 lines
		
	
	
		
			879 B
		
	
	
	
		
			Markdown
		
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			879 B
		
	
	
	
		
			Markdown
		
	
	
| <cn>
 | |
| #### ๆ็ดขๆก
 | |
| ๅธฆๆๆ็ดขๆ้ฎ็่พๅ
ฅๆกใ
 | |
| </cn>
 | |
| 
 | |
| <us>
 | |
| #### Search box
 | |
| Example of creating a search box by grouping a standard input with a search button.
 | |
| </us>
 | |
| 
 | |
| ```tpl
 | |
| <template>
 | |
|   <div>
 | |
|     <a-input-search placeholder="input search text" style="width: 200px" @search="onSearch" />
 | |
|     <br /><br />
 | |
|     <a-input-search placeholder="input search text" @search="onSearch" enterButton />
 | |
|     <br /><br />
 | |
|     <a-input-search
 | |
|       placeholder="input search text"
 | |
|       @search="onSearch"
 | |
|       enterButton="Search"
 | |
|       size="large"
 | |
|     />
 | |
|     <br /><br />
 | |
|     <a-input-search placeholder="input search text" @search="onSearch" size="large">
 | |
|       <a-button slot="enterButton">Custom</a-button>
 | |
|     </a-input-search>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
|   export default {
 | |
|     methods: {
 | |
|       onSearch(value) {
 | |
|         console.log(value);
 | |
|       },
 | |
|     },
 | |
|   };
 | |
| </script>
 | |
| ```
 |