app-default-chartexpview.tsx 413 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '../../../decorators';
import { AppChartExpViewBase } from '../app-common-view/app-chartexpview-base';

/**
 * 应用图表视图
 *
 * @export
 * @class AppDefaultChartExpView
 * @extends {AppChartExpViewBase}
 */
@Component({})
@VueLifeCycleProcessing()
export class AppDefaultChartExpView extends AppChartExpViewBase {}