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