26 lines
		
	
	
		
			603 B
		
	
	
	
		
			Markdown
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			603 B
		
	
	
	
		
			Markdown
		
	
	
| <cn>
 | |
| #### ๅๆฎต่ฟๅบฆๆก
 | |
| ๆ ๅ็่ฟๅบฆๆกใ
 | |
| </cn>
 | |
| 
 | |
| <us>
 | |
| #### Progress bar with success segment
 | |
| A standard progress bar.
 | |
| </us>
 | |
| 
 | |
| ```tpl
 | |
| <template>
 | |
|   <div>
 | |
|     <a-tooltip title="3 done / 3 in progress / 4 to do">
 | |
|       <a-progress :percent="60" :successPercent="30" />
 | |
|     </a-tooltip>
 | |
|     <a-tooltip title="3 done / 3 in progress / 4 to do">
 | |
|       <a-progress :percent="60" :successPercent="30" type="circle" />
 | |
|     </a-tooltip>
 | |
|     <a-tooltip title="3 done / 3 in progress / 4 to do">
 | |
|       <a-progress :percent="60" :successPercent="30" type="dashboard" />
 | |
|     </a-tooltip>
 | |
|   </div>
 | |
| </template>
 | |
| ```
 |