0
在ES5:什麼是`React` ES6使用`Mixin`正確的方法
var TodoApp = React.createClass({
mixins: [ReactFireMixin], //working fine
...
});
在ES6:(創建使用react cli)
class TodoApp extends Component {
constructor(props) {
super(props)
}
mixins= [ReactFireMixin] //not working
...
}
什麼正確的做法呢?
那麼如何使用reactfire? –
@InzamamMalik似乎是他們的github上持續的開放問題https://github.com/firebase/reactfire/issues/38#issuecomment-192963227 – finalfreq