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 AppStyle2ChartView
 * @extends {AppChartViewBase}
 */
let AppStyle2ChartView = class AppStyle2ChartView extends AppChartViewBase {
};
AppStyle2ChartView = __decorate([
    Component({}),
    VueLifeCycleProcessing()
], AppStyle2ChartView);
export { AppStyle2ChartView };
