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

22 lines
366 B
Vue
Raw Normal View History

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