13 lines
341 B
TypeScript
Raw Normal View History

2022-01-15 22:35:32 +08:00
import Funnel from './index.vue'
import image from '@/assets/images/chart/charts/funnel.png'
import { ConfigType } from '@/packages/index.d'
import { ChatCategoryEnum } from '../../index.d'
export const FunnelConfig: ConfigType = {
2022-01-16 22:17:34 +08:00
key: 'VFunnel',
2022-01-15 22:35:32 +08:00
title: '漏斗图',
category: ChatCategoryEnum.MORE,
node: Funnel,
image: image
}