我在用
import { Nav } from 'office-ui-fabric-react';
function CustomNav(props) {
return <Nav groups={groups} selectedKey={selectedKey} onLinkClick={handleLinkClick} data-myTag="hello" />;
}
对于导航对象,我想添加自定义 html 属性,例如data-myTag
. 如何将此属性添加到由该Nav
对象添加到 DOM 的按钮中。