Ffit2cloud-chenywrefactor: 初始化dev-v2
afd05faf创建于 2023年10月23日历史提交
import type { App } from 'vue'

const components = ['circle-shape']

export const setupCustomComponent = (app: App<Element>) => {
  components.forEach(key => {
    app.component(key, () => import(`@/custom-component/${key}/Component.vue`))
    app.component(key + '-attr', () => import(`@/custom-component/${key}/Attr.vue`))
  })
}