About the props key name conflicts between Cola and mapStateToProps
Using Cola decorators for data initialization, it's better to use the different key name of initData and mapStateToProps.
If the key name in initData conflicts with the name defined in mapStateToProps , data in initData will be prior than mapStateToProps.
The following example defines the data foo, and mapStateToProps also defines foo. and execute dispatch to change foo value to bar again, but as we had set foo in the initData, the dispatching action will not work, foo value will still be bar.