V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
huijiewei
V2EX  ›  React

React 组件样式的实现方式哪种更好? 大家都发表一下意见么

  •  
  •   huijiewei ·
    huijiewei · 3 小时 12 分钟前 · 287 次点击
    function ToggleButtonRemastered({ isEnabled, children }) {
      return (
        <button
          className={clsx(
            isEnabled && "scale-110",
            "transition-transform duration-200 w-max text-xl"
          )}
        >
        {children}
      </button>
      )
    }
    

    function ToggleButtonClassicEdition({ isEnabled, children }) {
      return (
        <button
          data-enabled={isEnabled}
          className="data-[enabled=truel:scale-110 transition-transform duration-200 w-max text-xl"
        >
          {children}
        </button>
      )
    }
    
    8 条回复    2025-01-22 21:49:31 +08:00
    liuw666
        1
    liuw666  
       2 小时 35 分钟前 via iPhone
    简单易懂,降低项目复杂度
    FrankFang128
        2
    FrankFang128  
       2 小时 25 分钟前
    用 tailwind 就行了,别折腾
    ltaoo1o
        3
    ltaoo1o  
       2 小时 22 分钟前
    建议第一种,我之前也是第二种写法,后面要在小程序实现相同的页面,代码改动比较多。
    donaldturinglee
        4
    donaldturinglee  
       2 小时 15 分钟前
    做项目用 clsx 或 classnames 这种样式拼接方便维护, 自己项目的话, 你喜欢哪种用哪种
    sjhhjx0122
        5
    sjhhjx0122  
       2 小时 14 分钟前
    第一种,简单直观是最好的
    angrylid
        6
    angrylid  
       2 小时 13 分钟前
    第一种好吧,而且 className 类似的库不是应该可以这样写吗
    clsx(
    "transition-transform duration-200 w-max text-xl",
    { "scale-110": isEnabled } ,
    )
    importmeta
        7
    importmeta  
       2 小时 10 分钟前
    antd 和 mui 都是 clsx 这种形式
    houshuu
        8
    houshuu  
       1 小时 43 分钟前
    站第一种
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2579 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 20ms · UTC 15:33 · PVG 23:33 · LAX 07:33 · JFK 10:33
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.