Blame view

build/Alert/Alert.html 467 Bytes
3a3ecabe   Imshann   init
1
  <div ng-class="'ant-alert'+(type?' ant-alert-'+type:'')+(!showIcon?' ant-alert-no-icon':'')+(description?' ant-alert-with-description':'')">
f886eef1   Imshann   优化Alert、Breadcrumb
2
      <antd-icon ng-if="showIcon" type="{{state.icons[type]}}" class="ant-alert-icon"></antd-icon>
3a3ecabe   Imshann   init
3
4
      <div class="ant-alert-content">
          <div class="ant-alert-message">{{message}}</div>
81f8a467   Imshann   调整组件前缀
5
          <div ng-if="description" class="ant-alert-description"><antd-slot content="{{description}}"></antd-slot></div>
3a3ecabe   Imshann   init
6
7
      </div>
  </div>