index.ts 414 B

1234567891011121314
  1. import { ShapeType } from "@/core/components";
  2. import Line from './line/index.vue'
  3. import LineIcon from './line-icon/index.vue'
  4. import Icon from './icon/index.vue'
  5. import Text from './text/index.vue'
  6. export const components: {
  7. [key in ShapeType]?: (data: {data: any}) => void
  8. } = {}
  9. components.line = Line as any
  10. components.lineIcon = LineIcon as any
  11. components.icon = Icon as any
  12. components.text = Text as any