我有一个令人沮丧的问题,type
设置为input
我看不到标签。
如果我使用type
作为select
,它的工作正常。这是我的代码:
{
"type": "input",
"key": "firstName",
"templateOptions": {
"type": "text",
"placeholder": "jane doe",
"label": "First name"
}
},
没有显示标签,但是这样做:
{
"key": "transportation",
"type": "select",
"templateOptions": {
"label": "How do you get around in the city",
"valueProp": "name",
"options": [
{
"name": "Car"
},
{
"name": "Helicopter"
}
]
}
}
任何帮助都会受到赞赏吗?