ant-design-vue/components/vc-pagination/demo/lessPages.vue

27 lines
490 B
Vue
Raw Normal View History

2018-03-05 19:06:44 +08:00
<script>
2019-01-12 11:33:27 +08:00
import VcPagination from '../index';
import '../assets/index.less';
2018-03-05 19:06:44 +08:00
export default {
2019-09-28 20:45:07 +08:00
data() {
2018-03-05 19:06:44 +08:00
return {
current: 3,
2019-01-12 11:33:27 +08:00
};
2018-03-05 19:06:44 +08:00
},
methods: {
2019-09-28 20:45:07 +08:00
onChange(page) {
2019-01-12 11:33:27 +08:00
console.log(page);
this.current = page;
2018-03-05 19:06:44 +08:00
},
},
2019-09-28 20:45:07 +08:00
render() {
2018-03-05 19:06:44 +08:00
return (
<div>
2019-09-28 20:45:07 +08:00
<VcPagination onChange={this.onChange} current={this.current} total={80} showLessItems />
2018-03-05 19:06:44 +08:00
<VcPagination showLessItems defaultCurrent={1} total={60} />
</div>
2019-01-12 11:33:27 +08:00
);
2018-03-05 19:06:44 +08:00
},
2019-01-12 11:33:27 +08:00
};
2018-03-05 19:06:44 +08:00
</script>