27 lines
		
	
	
		
			681 B
		
	
	
	
		
			Markdown
		
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			681 B
		
	
	
	
		
			Markdown
		
	
	
| 
 | |
| <cn>
 | |
| #### ๆ้ฎ็ฑปๅ
 | |
| ๆ้ฎๆๅ็ง็ฑปๅ๏ผไธปๆ้ฎใๆฌกๆ้ฎใ่็บฟๆ้ฎใๅฑ้ฉๆ้ฎใไธปๆ้ฎๅจๅไธไธชๆไฝๅบๅๆๅคๅบ็ฐไธๆฌกใ
 | |
| </cn>
 | |
| 
 | |
| <us>
 | |
| #### Type
 | |
| There are `primary` button, `default` button, `dashed` button and `danger` button in antd.
 | |
| </us>
 | |
| 
 | |
| ```html
 | |
| <template>
 | |
|   <div>
 | |
|     <a-button type="primary">Primary</a-button>
 | |
|     <a-button>Default</a-button>
 | |
|     <a-button type="dashed">Dashed</a-button>
 | |
|     <a-button type="danger">Danger</a-button>
 | |
|     <a-config-provider :autoInsertSpaceInButton="false">
 | |
|       <a-button type="primary">ๆ้ฎ</a-button>
 | |
|     </a-config-provider>
 | |
|     <a-button type="primary">ๆ้ฎ</a-button>
 | |
|   </div>
 | |
| </template>
 | |
| ```
 | |
| 
 |