You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
293 B
12 lines
293 B
import Pagination from './Pagination';
|
|
import Base from '../base';
|
|
|
|
export { PaginationProps, PaginationConfig } from './Pagination';
|
|
|
|
/* istanbul ignore next */
|
|
Pagination.install = function (Vue) {
|
|
Vue.use(Base);
|
|
Vue.component(Pagination.name, Pagination);
|
|
};
|
|
|
|
export default Pagination;
|