mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-25 02:40:16 +08:00
12 lines
203 B
TypeScript
12 lines
203 B
TypeScript
import { getUUID } from '@/utils'
|
|
|
|
export default class Config {
|
|
name: string = 'BarCommon'
|
|
id: string = getUUID()
|
|
attr = { w: 500, h: 300 }
|
|
// 图表的
|
|
public config = {
|
|
global: {}
|
|
}
|
|
}
|