Redux Devtools Script: 在非 React app 中使用 redux-devtools

1,123 阅读1分钟

Using Redux DevTools without React in your App!

Usage

Just follow redux-devtools guide but do not mount anything into your dom tree using React but reference a script:

Remember to expose your Redux store to window Object

import store from './store'
window.ReduxStore = store

And it's done! Check out the Vue example!

License

MIT © EGOIST