angular2 自定义标题组件

效果

import {Component,Input,OnInit} from "@angular/core";


const css = require('./horizontal.component.css');
@Component({
    selector: 'custom-div-title',templateUrl: './horizontal.component.html',styles: [
        css
    ]

})

export class CustomDivTitleComponent {

    @input()
    title: string = '标题';
    @Input('title') set changeTitle(val: any) {
        this.title = val;
    }


}
<div class="row custom-div-title">
    <div class="col-xs-3">
        <span>{{ title }}</span>
    </div>
</div>
.custom-div-title {
    border-top: 5px solid #36a9e1;
    margin: 10px auto;
}

.custom-div-title > div {
    background-color: #36a9e1;
    color: whitesmoke;
    font-size: 20px;
    font-family: "Microsoft YaHei UI";
    text-align: left;
}

相关文章

ANGULAR.JS:NG-SELECTANDNG-OPTIONSPS:其实看英文文档比看中...
AngularJS中使用Chart.js制折线图与饼图实例  Chart.js 是...
IE浏览器兼容性后续前言 继续尝试解决IE浏览器兼容性问题,...
Angular实现下拉菜单多选写这篇文章时,引用文章地址如下:h...
在AngularJS应用中集成科大讯飞语音输入功能前言 根据项目...
Angular数据更新不及时问题探讨前言 在修复控制角标正确变...