Redux-DevTools安装
Posted shengjunyong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redux-DevTools安装相关的知识,希望对你有一定的参考价值。
去谷歌应用商店搜索Redux-DevTools,安装就行
高级使用方法:访问https://github.com/zalmoxisus/redux-devtools-extension
import {createStore,compose} from "redux" import reducer from "./reducer" const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose const store = createStore(reducer,composeEnhancers()) export default store
以上是关于Redux-DevTools安装的主要内容,如果未能解决你的问题,请参考以下文章
redux-devtools安装 以及redux No store found. Make sure to follow the instructions.解决
P06:Chrome插件 Redux-DevTools 用来调试Redux数据
如何将操作发送到 redux-devtools 存储以从组件导入状态?