mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
22 lines
320 B
Vue
22 lines
320 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>
|