javascript 反应store.js
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 反应store.js相关的知识,希望对你有一定的参考价值。
import { createStore, applyMiddleware, compose } from "redux";
import thunk from "redux-thunk";
import rootReducer from "./reducers";
const initialState = {};
const middleware = [thunk];
let store;
if (window.navigator.userAgent.includes("Chrome")) {
store = createStore(
rootReducer,
initialState,
compose(
applyMiddleware(...middleware),
window.__REDUX_DEVTOOLS_EXTENSION__ &&
window.__REDUX_DEVTOOLS_EXTENSION__()
)
);
} else {
store = createStore(
rootReducer,
initialState,
compose(applyMiddleware(...middleware))
);
}
export default store;
以上是关于javascript 反应store.js的主要内容,如果未能解决你的问题,请参考以下文章
前端开发:JavaScript 存储数据
如何调用存储在 Store.js (React-Flux) 中的组件中的值
在电话间隙中使用本地存储
Axios Vue.js 将对象数组从 store.js 传递给组件
vue各文件详解——store.js
vue.js vuex store(参考)