直接上代码, 在store文件夹下的入口文件index.js中
import { createStore,applyMiddleware,compose } from 'redux'
import reducer from './reducer'
import thunk from 'redux-thunk'
// !!!!!!!!!
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__({}):compose
const enhancer = composeEnhancers(applyMiddleware(thunk))
const store = createStore(
reducer,
enhancer
)
// !!!!!!!!!
export default store
搞定
版权声明:本文为Franklin_k原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。