index.ts 411 B

12345678910111213
  1. import Heatmap from './index.vue'
  2. import image from '@/assets/images/chart/charts/heatmap.png'
  3. import { ConfigType } from '@/packages/index.d'
  4. import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
  5. export const HeatmapConfig: ConfigType = {
  6. key: 'VHeatmap',
  7. title: '热力图',
  8. category: ChatCategoryEnum.MORE,
  9. categoryName: ChatCategoryEnumName.MORE,
  10. node: Heatmap,
  11. image: image
  12. }