mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:05:47 +08:00
11 lines
371 B
Vue
11 lines
371 B
Vue
|
<template>
|
||
|
<div class="block">
|
||
|
<span class="demonstration">When you have few pages</span>
|
||
|
<el-pagination layout="prev, pager, next" :total="50"></el-pagination>
|
||
|
</div>
|
||
|
<div class="block">
|
||
|
<span class="demonstration">When you have more than 7 pages</span>
|
||
|
<el-pagination layout="prev, pager, next" :total="1000"></el-pagination>
|
||
|
</div>
|
||
|
</template>
|