ant-design-vue/components/pagination/index.ts

13 lines
294 B
TypeScript
Raw Normal View History

2020-10-19 14:19:33 +00:00
import { App } from 'vue';
2019-01-12 03:33:27 +00:00
import Pagination from './Pagination';
2017-11-07 03:57:16 +00:00
2019-01-12 03:33:27 +00:00
export { PaginationProps, PaginationConfig } from './Pagination';
/* istanbul ignore next */
2020-10-19 14:19:33 +00:00
Pagination.install = function(app: App) {
app.component(Pagination.name, Pagination);
2020-10-13 11:14:56 +00:00
return app;
2019-01-12 03:33:27 +00:00
};
2019-01-12 03:33:27 +00:00
export default Pagination;