import { __decorate } from "tslib";
import { AppDefaultIndexViewLayout } from "../../app-default-layout/app-default-indexview-layout/app-default-indexview-layout";
import { Component } from 'vue-property-decorator';
import './app-style4-indexview-layout.less';
let AppStyle4IndexViewLayout = class AppStyle4IndexViewLayout extends AppDefaultIndexViewLayout {
    /**
     * 初始化
     *
     * @memberof AppDefaultIndexViewLayout
     */
    created() {
        document.getElementsByTagName('html')[0].className = this.selectTheme();
        this.isFullScreen = Boolean(this.$store.getters['getCustomParamByTag']('srffullscreen'));
    }
};
AppStyle4IndexViewLayout = __decorate([
    Component({})
], AppStyle4IndexViewLayout);
export { AppStyle4IndexViewLayout };
