iview/test/routers/page.vue
梁灏 e0cd7f909a fixed #134
fixed #134
2016-12-19 09:59:08 +08:00

13 lines
414 B
Vue

<template>
<Page :total="1000" show-sizer show-elevator show-total class="classr" :style="{float: 'right'}"></Page>
<br><br>
<Page :total="1000" show-sizer show-elevator show-total size="small" class="classr2"></Page>
<br><br>
<Page :current="2" :total="50" simple></Page>
</template>
<script>
import { Page } from 'iview';
export default {
components: { Page }
}
</script>