WidgetConfig.ts 273 Bytes
Newer Older
WuFeiyang's avatar
WuFeiyang committed
1 2 3 4 5 6 7 8 9 10 11 12 13
import { WidgetRef } from './WidgetRef';
import {  GridItemData } from 'vue-grid-layout';
export interface WidgetConfig {
  WidgetComponentName: string;
  data: any;
}

export class AllWidgetConfig {
  public currentRef?: string;
  public widgetList: WidgetRef[] = [];
}