index.ts 347 B

123456789101112
  1. import MapChine from './index.vue'
  2. import image from '@/assets/images/chart/charts/map.png'
  3. import { ConfigType } from '@/packages/index.d'
  4. import { ChatCategoryEnum } from '../../index.d'
  5. export const MapChineConfig: ConfigType = {
  6. key: 'MapChine',
  7. title: '北京地图',
  8. category: ChatCategoryEnum.MAP,
  9. node: MapChine,
  10. image: image
  11. }