import Pagination from './Pagination.vue' import Table from './common/BaseTable.vue' const globalComponents = { Pagination, Table } export default { install(app) { Object.keys(globalComponents).forEach(key => { app.component(key, globalComponents[key]) }) } }