app-default-grid.tsx 398 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import { Component } from 'vue-property-decorator';
import { AppGridBase } from '../app-common-control/app-grid-base';
import { VueLifeCycleProcessing } from '../../../decorators';
import './app-default-grid.less';

/**
 * 表格部件
 *
 * @export
 * @class AppDefaultGrid
 * @extends {AppGridBase}
 */
@Component({})
@VueLifeCycleProcessing()
export class AppDefaultGrid extends AppGridBase {

}