react禁用a标签快捷方法

设置 style属性

 style={{
   pointerEvents: disabled ? 'none' : 'initial',
   opacity: disabled ? 0.6 : 1,
 }}

你可能感兴趣的:(前端)