13 lines
345 B
TypeScript
Raw Normal View History

2022-01-15 22:35:32 +08:00
import Heatmap from './index.vue'
import image from '@/assets/images/chart/charts/heatmap.png'
import { ConfigType } from '@/packages/index.d'
import { ChatCategoryEnum } from '../../index.d'
export const HeatmapConfig: ConfigType = {
key: 'Heatmap',
title: '热力图',
category: ChatCategoryEnum.MORE,
node: Heatmap,
image: image
}