21 lines
455 B
JavaScript
21 lines
455 B
JavaScript
import RefreshButton from './RefreshButton.vue'
|
|
import ActionBar from './ActionBar.vue'
|
|
import RightToolbar from './RightToolbar.vue'
|
|
import Pagination from './Pagination.vue'
|
|
|
|
// 全局组件列表
|
|
const components = [
|
|
RefreshButton,
|
|
ActionBar,
|
|
RightToolbar,
|
|
Pagination
|
|
]
|
|
|
|
// 全局注册方法
|
|
export default {
|
|
install(app) {
|
|
components.forEach(component => {
|
|
app.component(component.name || component.__name, component)
|
|
})
|
|
}
|
|
} |