标签标签材料ui

时间:2020-10-18 18:56:20

标签: material-ui

不能在材质ui中的材质标签标签内使用链接标签 Tab内的代码均无效

body

1 个答案:

答案 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>