使用v0.68.0,似乎不控制defaultProps:
下面的代码(来自official doc)在声明" foo"时不会引发错误。 defaultProp(作为字符串而不是数字):
// @flow
import * as React from "react";
type Props = {
foo: number,
};
class MyComponent extends React.Component<Props> {
static defaultProps = {
foo: 'bad string',
};
}
有什么想法吗? 感谢
答案 0 :(得分:1)