react:redux_dev_tools的安装

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__()
posted @ 2019-11-04 20:06  前端菜鸟教程  阅读(367)  评论(0编辑  收藏  举报