mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
18 lines
255 B
Vue
18 lines
255 B
Vue
<script>
|
|
import VcPagination from '../index'
|
|
import '../assets/index.less'
|
|
|
|
export default {
|
|
data () {
|
|
return {}
|
|
},
|
|
render () {
|
|
return (
|
|
<div>
|
|
<VcPagination defaultCurrent={3} total={450} />
|
|
</div>
|
|
)
|
|
},
|
|
}
|
|
</script>
|