新增教师节

This commit is contained in:
joshen@zcwytd.com
2023-09-06 17:21:30 +08:00
parent 10b9e2cfa5
commit f543d1ee5b
27 changed files with 5798 additions and 1360 deletions

14
src/components/index.js Normal file
View 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])
})
}
}