0

如何使用 angular-formly 在字段中设置像 .input-sm 这样的类?

前任。:

<input class="form-control input-sm" name="test" type="text" placeholder=".input-sm">
4

1 回答 1

2

给你。只需使用该ngModelElAttrs属性:

{
  key: 'yourKey',
  type: 'input',
  ngModelElAttrs: {
    class: 'form-control input-sm' // <-- this is it!
  },
  templateOptions: {
    label: 'Input'
  }
}
于 2015-09-30T14:12:50.700 回答