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