语义 UI 将项目图像反应为 link

Semantic UI React item image as link

我正在使用 Item(语义 UI React)并且我想将图像设置为 link。但是如何引用 link URL?

<Item>
    <Item.Image src={this.props.fileUrl} size='tiny' as='a' />
    <Item.Content>
    </Item.Content>
</Item>

如果我将 Item.Image 包裹在 a 容器中,填充会变得混乱...

你走对了,你需要使用 SUIR 的增强,所有非 Item.Image 道具将被绕过:

<Item.Image
  as='a'
  href='http://example.com'
  src={this.props.fileUrl}
  size='tiny'
/>