mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
a6620cbbe5
* feat: add Vue.use feat * feat: Vue.use method * docs: update docs
11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
import Pagination from './Pagination'
|
|
|
|
export { PaginationProps, PaginationConfig } from './Pagination'
|
|
|
|
/* istanbul ignore next */
|
|
Pagination.install = function (Vue) {
|
|
Vue.component(Pagination.name, Pagination)
|
|
}
|
|
|
|
export default Pagination
|