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

/**
 * 表格导航栏
 *
 * @export
 * @class AppDefaultGridExpBar
 * @extends {AppGridExpBarBase}
 */
@Component({})
@VueLifeCycleProcessing()
export class AppDefaultGridExpBar extends AppGridExpBarBase {}