13 lines
354 B
TypeScript
Raw Normal View History

2022-01-15 21:05:11 +08:00
import LineCommon from './index.vue'
import image from '@/assets/images/chart/charts/line.png'
import { ConfigType } from '@/packages/index.d'
import { ChatCategoryEnum } from '../../index.d'
export const LineCommonConfig: ConfigType = {
key: 'LineCommon',
title: '折线图',
category: ChatCategoryEnum.LINE,
node: LineCommon,
image: image
}