12 lines
203 B
TypeScript
Raw Normal View History

2022-01-24 21:12:18 +08:00
import { getUUID } from '@/utils'
2022-01-25 11:09:32 +08:00
export default class Config {
2022-01-24 21:12:18 +08:00
name: string = 'BarCommon'
id: string = getUUID()
attr = { w: 500, h: 300 }
// 图表的
public config = {
global: {}
}
}