如何使用 angular-formly 在字段中设置像 .input-sm 这样的类?
前任。:
<input class="form-control input-sm" name="test" type="text" placeholder=".input-sm">
如何使用 angular-formly 在字段中设置像 .input-sm 这样的类?
前任。:
<input class="form-control input-sm" name="test" type="text" placeholder=".input-sm">
给你。只需使用该ngModelElAttrs
属性:
{
key: 'yourKey',
type: 'input',
ngModelElAttrs: {
class: 'form-control input-sm' // <-- this is it!
},
templateOptions: {
label: 'Input'
}
}