import { __decorate } from "tslib";
import { AppViewBase, VueLifeCycleProcessing } from '@ibizstudio-ex/template-vue';
import { Component } from 'vue-property-decorator';
/**
 * 第一版设计工具右侧素材区
 *
 * @author chitanda
 * @date 2022-05-23 11:05:30
 * @export
 * @class DynamicDesignPropertyView
 * @extends {AppViewBase}
 */
let DynamicDesignPropertyView = class DynamicDesignPropertyView extends AppViewBase {
    render() {
        return <property-form-container ctx={this.staticProps.designCtx} viewModel={this.viewInstance} modelData={this.staticProps.modeldata}/>;
    }
};
DynamicDesignPropertyView = __decorate([
    Component({}),
    VueLifeCycleProcessing()
], DynamicDesignPropertyView);
export { DynamicDesignPropertyView };
