mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-17 06:46:46 +08:00
新增教师节
This commit is contained in:
14
src/components/index.js
Normal file
14
src/components/index.js
Normal file
@@ -0,0 +1,14 @@
|
||||
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])
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user