17 lines
560 B
TypeScript
17 lines
560 B
TypeScript
import { PublicConfigClass } from '@/packages/public'
|
|
import { chartInitConfig } from '@/settings/designSetting'
|
|
import { CreateComponentType } from '@/packages/index.d'
|
|
import { MapIcons06Config } from './index'
|
|
import cloneDeep from 'lodash/cloneDeep'
|
|
|
|
export const option = {
|
|
|
|
}
|
|
|
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
public key = MapIcons06Config.key
|
|
public attr = { ...chartInitConfig, w: 60, h: 63, zIndex: 1 }
|
|
public chartConfig = cloneDeep(MapIcons06Config)
|
|
public option = cloneDeep(option)
|
|
}
|