不能在材质ui中的材质标签标签内使用链接标签 Tab内的代码均无效
body
答案 0 :(得分:0)
根据文档Tab
,不支持children
。相反,您可以使用component
道具。
https://material-ui.com/api/tab/#props
<Tabs>
<Tab
component={() => (
<Link
style={isActive(history, "/cart")}
to="/cart"
>
Cart{" "}
<sup>
<small className="cart-badge">{itemTotal()}</small>
</sup>
</Link>
)}/>
</Tabs>