美文网首页
react 支持"decorators"装饰器语法

react 支持"decorators"装饰器语法

作者: G_whk | 来源:发表于2019-05-13 18:36 被阅读0次
背景

为了让react项目中的高阶组件支持装饰器语法。下面的步骤基于create-react-app创建的react项目。

步骤

1.安装decorators依赖

npm install --save-dev @babel/plugin-proposal-decorators

2.修改package.json

"babel": {
    "presets": [
      "react-app"
    ],
    "plugins": [
      [
        "@babel/plugin-proposal-decorators",
        {
          "legacy": true
        }
      ]
    ]
  }

相关文章

网友评论

      本文标题:react 支持"decorators"装饰器语法

      本文链接:https://www.haomeiwen.com/subject/loiraqtx.html