react:redux_dev_tools的安裝

一、在應用商城 安裝chrome 插件git

redux_dev_toolsgithub

二、配置chrome

https://github.com/zalmoxisus/redux-devtools-extension#usageredux

在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   //暴露出去

其實就是加了這樣一句話.code

window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
相關文章
相關標籤/搜索