import type { App } from 'vue' const components = ['circle-shape'] export const setupCustomComponent = (app: App) => { components.forEach(key => { app.component(key, () => import(`@/custom-component/${key}/Component.vue`)) app.component(key + '-attr', () => import(`@/custom-component/${key}/Attr.vue`)) }) }