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

18 lines
257 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() {
2019-01-12 11:33:27 +08:00
return {};
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 defaultCurrent={2} total={25} />
2018-03-05 19:06:44 +08:00
</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>