2016-09-09 14:29:19 +08:00
|
|
|
<template>
|
2016-11-03 18:09:04 +08:00
|
|
|
<Page :total="1000" show-sizer show-elevator show-total></Page>
|
|
|
|
<br><br>
|
|
|
|
<Page :total="1000" show-sizer show-elevator show-total size="small"></Page>
|
|
|
|
<br><br>
|
|
|
|
<Page :current="2" :total="50" simple></Page>
|
2016-09-09 14:29:19 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
2016-11-03 18:09:04 +08:00
|
|
|
import { Page } from 'iview';
|
2016-09-09 14:29:19 +08:00
|
|
|
export default {
|
2016-11-03 18:09:04 +08:00
|
|
|
components: { Page }
|
2016-09-09 14:29:19 +08:00
|
|
|
}
|
2016-10-28 17:24:52 +08:00
|
|
|
</script>
|