我想知道是否可以使用带有Angular-formly的Font Awesome图标。
我正在使用带有引导程序的Angular-formly,现在我想在字段右侧添加Font Awesome图标。
这就是我的Angular-formly的设置方式
field = {
className: 'col-md-3',
key: name,
type: typeObject.type,
templateOptions: {
"valueProp": "name",
disabled: typeObject.disabled,
type: 'text',
label: name,
required: true,
options: typeObject.options,
fieldData: value,
addonRight: {text:"Font Awesome icon here"}
}
};
这有可能实现吗?