mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 21:27:52 +08:00
9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
const Pagination = require('./src/pagination');
|
|
|
|
/* istanbul ignore next */
|
|
Pagination.install = function(Vue) {
|
|
Vue.component(Pagination.name, Pagination);
|
|
};
|
|
|
|
module.exports = Pagination;
|