mirror of
https://gitee.com/dromara/go-view.git
synced 2025-10-15 15:02:10 +08:00
14 lines
436 B
TypeScript
14 lines
436 B
TypeScript
import { CreateComponentType } from '@/packages/index.d';
|
|
import { publicConfig } from '@/packages/public/publicConfig';
|
|
import { ComponentConfig } from './index'
|
|
import cloneDeep from 'lodash/cloneDeep'
|
|
|
|
export const option = {
|
|
}
|
|
|
|
export default class Config extends publicConfig implements CreateComponentType
|
|
{
|
|
public key = ComponentConfig.key
|
|
public chartConfig = cloneDeep(ComponentConfig)
|
|
public option = cloneDeep(option)
|
|
} |