1、在应用商城 安装chrome 插件
redux_dev_tools
2、配置
https://github.com/zalmoxisus/redux-devtools-extension#usage
在index.js配置 添加
import { createStore } from 'redux' // 引入createStore方法
import reducer from './reducer'
const store = createStore(reducer,
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()) // 创建数据存 储仓库 【新增加】
export default store //暴露出去
其实就是加了这样一句话.
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()