index.ts 354 B

123456789101112
  1. import LineCommon from './index.vue'
  2. import image from '@/assets/images/chart/charts/line.png'
  3. import { ConfigType } from '@/packages/index.d'
  4. import { ChatCategoryEnum } from '../../index.d'
  5. export const LineCommonConfig: ConfigType = {
  6. key: 'LineCommon',
  7. title: '折线图',
  8. category: ChatCategoryEnum.LINE,
  9. node: LineCommon,
  10. image: image
  11. }