import { __decorate } from "tslib";
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '../../../decorators';
import { AppChartViewBase } from '../app-common-view/app-chartview-base';
/**
 * 应用图表视图
 *
 * @export
 * @class AppDefaultChartView
 * @extends {AppChartViewBase}
 */
let AppDefaultChartView = class AppDefaultChartView extends AppChartViewBase {
};
AppDefaultChartView = __decorate([
    Component({}),
    VueLifeCycleProcessing()
], AppDefaultChartView);
export { AppDefaultChartView };
