mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-22 13:36:23 +08:00
13 lines
333 B
TypeScript
13 lines
333 B
TypeScript
import Radar from './index.vue'
|
|
import image from '@/assets/images/chart/charts/radar.png'
|
|
import { ConfigType } from '@/packages/index.d'
|
|
import { ChatCategoryEnum } from '../../index.d'
|
|
|
|
export const RadarConfig: ConfigType = {
|
|
key: 'VRadar',
|
|
title: '雷达',
|
|
category: ChatCategoryEnum.MORE,
|
|
node: Radar,
|
|
image: image
|
|
}
|