2019-01-12 03:33:27 +00:00
|
|
|
import Pagination from './Pagination';
|
2019-08-28 02:50:19 +00:00
|
|
|
import Base from '../base';
|
2017-11-07 03:57:16 +00:00
|
|
|
|
2019-01-12 03:33:27 +00:00
|
|
|
export { PaginationProps, PaginationConfig } from './Pagination';
|
2018-09-19 05:21:57 +00:00
|
|
|
|
|
|
|
/* istanbul ignore next */
|
2019-01-12 03:33:27 +00:00
|
|
|
Pagination.install = function(Vue) {
|
2019-08-28 02:50:19 +00:00
|
|
|
Vue.use(Base);
|
2019-01-12 03:33:27 +00:00
|
|
|
Vue.component(Pagination.name, Pagination);
|
|
|
|
};
|
2018-09-19 05:21:57 +00:00
|
|
|
|
2019-01-12 03:33:27 +00:00
|
|
|
export default Pagination;
|