Files
fe-manage/src/components/index.js
joshen@zcwytd.com f543d1ee5b 新增教师节
2023-09-06 17:21:30 +08:00

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])
})
}
}