import { App } from 'vue' import BaseListLabel from './BaseListLabel' import BaseOperationalQualification from './BaseOperationalQualification' import BaseSearchLabel from './BaseSearchLabel' import BaseSvgIcon from './BaseSvgIcon' import TheRealTime from './TheRealTime' import BaseContentTemporarilyClosed from './BaseContentTemporarilyClosed' const componentsList = [ BaseListLabel, BaseOperationalQualification, BaseSearchLabel, BaseSvgIcon, TheRealTime, BaseContentTemporarilyClosed, ] export function globRegisterCustomComponents(app: App) { componentsList.forEach((component: any) => { app.component(component.name || component.displayName, component) }) }