app-default-captionbar.tsx 985 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
import { Component, Prop } from 'vue-property-decorator';
import Vue from 'vue';
import './app-default-captionbar.less';

/**
 * 标题栏组件
 *
 * @export
 * @class AppDefaultCaptionBar
 * @extends {Vue}
 */
@Component({})
export class AppDefaultCaptionBar extends Vue {

    /**
     * 标题栏模型
     *
     * @memberof AppDefaultCaptionBar
     */
    @Prop() public modelData!: any;

    /**
     * 视图模型数据
     *
     * @memberof AppDefaultCaptionBar
     */
    @Prop() public viewModelData!: any;

    /**
     * 应用上下文
     *
     * @memberof AppDefaultCaptionBar
     */
    @Prop() public context!: any;

    /**
     * 视图参数
     *
     * @memberof AppDefaultCaptionBar
     */
    @Prop() public viewparam!: any;

    /**
     * 绘制标题栏
     *
     * @memberof AppDefaultCaptionBar
     */
    public render() {
        return (<div class="app-default-captionbar">
            {this.viewModelData.caption}
        </div>)
    }
}