fix: Anchor.Link target should not be required

This commit is contained in:
愚道 2019-09-03 20:40:39 +08:00 committed by 偏右
parent 7864ab46c4
commit d8031aa4cb

View File

@ -8,7 +8,7 @@ import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
export interface AnchorLinkProps {
prefixCls?: string;
href: string;
target: string;
target?: string;
title: React.ReactNode;
children?: React.ReactNode;
className?: string;