index.ts 328 B

123456789101112
  1. import node from './index.vue'
  2. import image from '@/assets/images/chart/charts/pie.png'
  3. import { ConfigType } from '@/packages/index.d'
  4. import { ChatCategoryEnum } from '../../index.d'
  5. export const pieCommonConfig: ConfigType = {
  6. key: 'PieCommon',
  7. title: '饼图',
  8. category: ChatCategoryEnum.PIE,
  9. node: node,
  10. image
  11. }