2022-01-15 22:35:32 +08:00
|
|
|
import Radar from './index.vue'
|
|
|
|
import image from '@/assets/images/chart/charts/radar.png'
|
|
|
|
import { ConfigType } from '@/packages/index.d'
|
2022-01-18 21:41:52 +08:00
|
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
2022-01-15 22:35:32 +08:00
|
|
|
|
|
|
|
export const RadarConfig: ConfigType = {
|
2022-01-16 22:17:34 +08:00
|
|
|
key: 'VRadar',
|
2022-01-15 22:35:32 +08:00
|
|
|
title: '雷达',
|
|
|
|
category: ChatCategoryEnum.MORE,
|
2022-01-18 21:41:52 +08:00
|
|
|
categoryName: ChatCategoryEnumName.MORE,
|
2022-01-15 22:35:32 +08:00
|
|
|
node: Radar,
|
|
|
|
image: image
|
|
|
|
}
|