mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-14 21:36:44 +08:00
14 lines
304 B
JavaScript
14 lines
304 B
JavaScript
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])
|
|
})
|
|
}
|
|
} |