发表更新1 分钟读完 (大约211个字)
创建store
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| import { configureStore } from '@reduxjs/toolkit' import CounterReducer from './counter.slice'
export const store = configureStore({ reducer: { counter: CounterReducer }, })
export type RootState = ReturnType<typeof store.getState>
export type AppDispatch = typeof store.dispatch
|
阅读更多