我正在写一个AntD表单。有没有一种方法可以用type来缩短表单组件的名称,就像这样:
const CustomForm = Form<LongTypeName>
const CustomFormItem = CustomForm.Item
const Bar = () => (
<>
<CustomForm />
...
<CustomFormItem />
</>
)
我使用的是AntD 4.24.7和TS 4.1.2。
我正在写一个AntD表单。有没有一种方法可以用type来缩短表单组件的名称,就像这样:
const CustomForm = Form<LongTypeName>
const CustomFormItem = CustomForm.Item
const Bar = () => (
<>
<CustomForm />
...
<CustomFormItem />
</>
)
我使用的是AntD 4.24.7和TS 4.1.2。
1条答案
按热度按时间wgeznvg71#
在@slava-knyazev的提示下,我发现这段代码只能在TS 4.7+中工作,这是一个叫做示例化表达式的特性。