32 lines
		
	
	
		
			416 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			416 B
		
	
	
	
		
			Vue
		
	
	
| <docs>
 | |
| ---
 | |
| order: 6
 | |
| title:
 | |
|   zh-CN: ็ฎๆด
 | |
|   en-US: Simple mode
 | |
| ---
 | |
| 
 | |
| ## zh-CN
 | |
| 
 | |
| ็ฎๅ็็ฟป้กตใ
 | |
| 
 | |
| ## en-US
 | |
| 
 | |
| Simple mode.
 | |
| </docs>
 | |
| <template>
 | |
|   <a-pagination v-model:current="current" simple :total="50" />
 | |
| </template>
 | |
| <script lang="ts">
 | |
| import { defineComponent, ref } from 'vue';
 | |
| 
 | |
| export default defineComponent({
 | |
|   setup() {
 | |
|     const current = ref<number>(2);
 | |
|     return {
 | |
|       current,
 | |
|     };
 | |
|   },
 | |
| });
 | |
| </script>
 |