接口这东西真香…写组件传参再也不怕传错类型了
配默认值+可选属性,稳得一批
interface ButtonProps {
text: string;
disabled?: boolean;
}配默认值+可选属性,稳得一批
登录/注册