mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
fix: 修复动态导入的问题,保留 redirectComponent 配置的灵活性
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import { PublicConfigClass } from '@/packages/public'
|
||||
import { CreateComponentType } from '@/packages/index.d'
|
||||
import { chartInitConfig } from '@/settings/designSetting'
|
||||
import { IconConfig } from './index'
|
||||
import cloneDeep from 'lodash/cloneDeep'
|
||||
|
||||
export const option = {
|
||||
// 图标名称
|
||||
dataset: 'uim:apple',
|
||||
color: '#03A9F4',
|
||||
size: 64,
|
||||
rotate: 0 // 旋转角度
|
||||
}
|
||||
|
||||
export default class Config extends PublicConfigClass implements CreateComponentType {
|
||||
public key = IconConfig.key
|
||||
public attr = { ...chartInitConfig, w: 64, h: 64, zIndex: 1 }
|
||||
public chartConfig = cloneDeep(IconConfig)
|
||||
public option = cloneDeep(option)
|
||||
}
|
||||
Reference in New Issue
Block a user