react-mixins-decorator
v0.1.18
Published
用于实现在 react component class(es6风格) 使用 react mixins 特性的类装饰器
Downloads
15
Maintainers
Readme
React Mixins Decorator
用于实现在 react component class(es6风格) 使用 react mixins 特性的类装饰器
版本更新提示
0.1.x
组件被实现
安装
npm install react-mixins-decorator --save
使用
import { Component } from 'react';
import reactMixins from 'react-mixins-decorator';
@reactMixins([MixinTargetA, MixinTargetB, MixinTargetC, ....])
class TargetComponent extends Component {
....
}