32 lines
		
	
	
		
			394 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			394 B
		
	
	
	
		
			Vue
		
	
	
| <docs>
 | |
| ---
 | |
| order: 0
 | |
| title:
 | |
|   zh-CN: ๅบๆฌ
 | |
|   en-US: Basic
 | |
| ---
 | |
| 
 | |
| ## zh-CN
 | |
| 
 | |
| ๅบ็กๅ้กตใ
 | |
| 
 | |
| ## en-US
 | |
| 
 | |
| Basic pagination.
 | |
| 
 | |
| </docs>
 | |
| 
 | |
| <template>
 | |
|   <a-pagination v-model:current="current" :total="50" show-less-items />
 | |
| </template>
 | |
| <script lang="ts">
 | |
| import { defineComponent, ref } from 'vue';
 | |
| export default defineComponent({
 | |
|   setup() {
 | |
|     return {
 | |
|       current: ref(2),
 | |
|     };
 | |
|   },
 | |
| });
 | |
| </script>
 |