Blame view

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