import { __decorate } from "tslib";
import { AppStyle2IndexViewLayout } from "../../app-style2-layout/app-style2-indexview-layout/app-style2-indexview-layout";
import { Component } from 'vue-property-decorator';
import './app-style3-indexview-layout.less';
let AppStyle3IndexViewLayout = class AppStyle3IndexViewLayout extends AppStyle2IndexViewLayout {
    /**
     * 初始化
     *
     * @memberof AppStyle2IndexViewLayout
     */
    created() {
        document.getElementsByTagName('html')[0].className = this.selectTheme();
        this.$uiState.changeLayoutState({
            styleMode: 'STYLE2'
        });
    }
};
AppStyle3IndexViewLayout = __decorate([
    Component({})
], AppStyle3IndexViewLayout);
export { AppStyle3IndexViewLayout };
