mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-21 21:16:23 +08:00
13 lines
335 B
TypeScript
13 lines
335 B
TypeScript
import Point from './index.vue'
|
|
import image from '@/assets/images/chart/charts/Point.png'
|
|
import { ConfigType } from '@/packages/index.d'
|
|
import { ChatCategoryEnum } from '../../index.d'
|
|
|
|
export const PointConfig: ConfigType = {
|
|
key: 'Point',
|
|
title: '热力图',
|
|
category: ChatCategoryEnum.MORE,
|
|
node: Point,
|
|
image: image
|
|
}
|