baichun fb412dddfc 堡垒之夜-工具页 | il y a 6 ans | |
---|---|---|
.. | ||
lib | il y a 6 ans | |
.npmignore | il y a 6 ans | |
README.md | il y a 6 ans | |
package.json | il y a 6 ans |
Adds
__self
prop to JSX elements, which React will use to generate some runtime warnings. All React users should enable this transform in dev mode.
In
<sometag />
Out
<sometag __self={this} />
npm install --save-dev babel-plugin-transform-react-jsx-self
.babelrc
(Recommended).babelrc
{
"plugins": ["transform-react-jsx-self"]
}
babel --plugins transform-react-jsx-self script.js
require("babel-core").transform("code", {
plugins: ["transform-react-jsx-self"]
});