Blame view

build/InputGroup/InputGroup.js 252 Bytes
3a3ecabe   Imshann   init
1
  import template from "./InputGroup.html";
81f8a467   Imshann   调整组件前缀
2
  angular.module("esNgAntd").directive("antdInputGroup", function () {
a77e7b1a   Imshann   优化InputGroup组件
3
4
5
6
7
8
9
10
11
12
    return {
      template: template,
      restrict: "E",
      replace: true,
      transclude: true,
      scope: {
        compact: "="
      }
    };
  });