子组件接收了父组件 argObj
和 formValue
两个参数,我是如下定义的:
interface Props {
argObj: {
key: string
};
formValue: {
[argObj.key]: string
}
}
此时会出现一个
error TS1170: A computed property name in a type literal must refer to an expression whose type is a literal type or a 'unique symbol' type.
的报错,请问我应该如何定义这个 formValue
中的 key