看了这么多,就没有一个讲明白的,就不能说清楚嘛…
Add-ons
是附加装置\附加软件的意思,
Github上addons.md
是这样说的
现在要使用addons,你需要一个个单独安装,
比如你要使用TestUtils
,你需要这么做
npm install react-addons-test-utils --save-dev //然后按顺序import import React from 'react'; import TestUtils from 'react-addons-test-utils';
- 1
- 2
- 3
- 4
- 5
- 1
- 2
- 3
- 4
- 5
你要使用mixin,你需要这么做
npm install react-addons-pure-render-mixin --save-dev
- 1
- 1
它这里列出了所有可以用的包名,比如:
- PureRenderMixin
- TestUtils
- TransitionGroup and CSSTransitionGroup
把驼峰法换成斜杆就可以了,React-addons-驼峰换成斜杆
原文链接:https://www.f2er.com/react/303758.htmldocs/docs/10-addons.md :
To get the add-ons,install them individually from npm (e.g.,npm installreact-addons-pure-render-mixin