mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
18 lines
285 B
Vue
18 lines
285 B
Vue
<script>
|
|
import VcPagination from '../index';
|
|
import '../assets/index.less';
|
|
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
render() {
|
|
return (
|
|
<div>
|
|
<VcPagination defaultCurrent={1} total={25} style={{ margin: '100px' }} />
|
|
</div>
|
|
);
|
|
},
|
|
};
|
|
</script>
|