13 lines
347 B
TypeScript
Raw Normal View History

2022-01-14 16:17:14 +08:00
import barCommon from './index.vue'
2022-01-15 12:50:00 +08:00
import image from '@/assets/images/chart/charts/bar_x.png'
2022-01-14 16:17:14 +08:00
import { ConfigType } from '@/packages/index.d'
2022-01-14 22:07:02 +08:00
import { ChatCategoryEnum } from '../../index.d'
2022-01-14 16:17:14 +08:00
export const barCommonConfig: ConfigType = {
2022-01-14 22:07:02 +08:00
key: 'BarCommon',
2022-01-14 16:17:14 +08:00
title: '基础',
2022-01-14 22:07:02 +08:00
category: ChatCategoryEnum.BAR,
2022-01-14 16:17:14 +08:00
node: barCommon,
2022-01-14 22:07:02 +08:00
image: image
2022-01-14 16:17:14 +08:00
}