Этот вопрос относится к ngx formly и Angular 5
здесь тип ввода. Я хочу знать Список типов
поддерживается ngx в FormlyFieldConfig
У меня есть код ниже
export class AppComponent {
form = new FormGroup({});
model = { email: 'email@gmail.com' };
fields: FormlyFieldConfig[] = [
{
key: 'email',
type: 'input', // here type is input. I want to know List of types
// supported by ngx formly in FormlyFieldConfig
templateOptions: {
type: 'email',
label: 'Email address',
placeholder: 'Enter email',
required: true,
}
},
{
key: 'email',
type: 'input',
templateOptions: {
type: 'email',
label: 'Email address',
placeholder: 'Enter email',
required: true,
}
}
];
submit(model) {
console.log(model);
}
}
здесь вводится тип. Я хочу знать Список типов
поддерживается ngx в FormlyFieldConfig