mirror of
https://gitee.com/dromara/go-view.git
synced 2026-05-12 00:00:01 +08:00
8 lines
251 B
TypeScript
8 lines
251 B
TypeScript
import { ChatCategoryEnum, IOption } from "@/packages/components/VChart/index.d";
|
|
import bars from './bars'
|
|
export const transformHandler: {
|
|
[key: string]: (args: IOption) => any
|
|
} = {
|
|
[ChatCategoryEnum.BAR]: bars,
|
|
// todo: more charts handler
|
|
} |