Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/472.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 我有一个问题,将一个基于MUI0.20的网站迁移到一个基于MUI3.9.3的网站有多困难,有没有办法做到这一点_Javascript_Material Ui_Migration - Fatal编程技术网

Javascript 我有一个问题,将一个基于MUI0.20的网站迁移到一个基于MUI3.9.3的网站有多困难,有没有办法做到这一点

Javascript 我有一个问题,将一个基于MUI0.20的网站迁移到一个基于MUI3.9.3的网站有多困难,有没有办法做到这一点,javascript,material-ui,migration,Javascript,Material Ui,Migration,将一个基于MUI0.20的网站迁移到一个基于MUI3.9.3的网站有多困难,有没有办法呢。我有一个班级按钮 case class RaisedButton( key: js.UndefOr[String] = js.undefined, ref: js.UndefOr[String] = js.undefined, className: js.UndefOr[String] = js.undefined, disabled: js.UndefOr[Boolean

将一个基于MUI0.20的网站迁移到一个基于MUI3.9.3的网站有多困难,有没有办法呢。我有一个班级按钮

case class RaisedButton(

 key: js.UndefOr[String] = js.undefined,
    ref: js.UndefOr[String] = js.undefined,
   className: js.UndefOr[String] = js.undefined,
   
    disabled: js.UndefOr[Boolean] = js.undefined,
    /* Override the default background color for the button when it is disabled. */
    href: js.UndefOr[String] = js.undefined,
    /* An icon to be displayed within the button. */
     icon: js.UndefOr[VdomNode] = js.undefined,
    
    /*override val*/ label: js.UndefOr[String] = js.undefined,
    /* The color of the button's label. */
    /*override val*/ labelPosition: js.UndefOr[BeforeAfter] = js.undefined,
    /* Override the inline-styles of the button's label element. */
    /*override val*/ labelStyle: js.UndefOr[CssProperties] = js.undefined,
    /*override val*/ primary: js.UndefOr[Boolean] = js.undefined,
    /* Override the inline style of the ripple element. */
     secondary: js.UndefOr[Boolean] = js.undefined,
    /* Override the inline-styles of the root element. */
     style: js.UndefOr[CssProperties] = js.undefined,
   
    onClick: js.UndefOr[ReactEvent => Callback] = js.undefined,
    /* (Passed on to EnhancedButton) */
    touchTapCallback: Callback = Callback.empty,
    
     `type`: js.UndefOr[String] = js.undefined
   
)