在谷歌商店搜索 Redux DevTools
并进行安装
在创建Store的时候加入
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
完整
//src/store/index.js
import {createStore} from "redux";
import reducer from "./reducer";
const store = createStore(reducer,
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__());
export default store