index.ts 282 B

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