fluxible createStore module not found/cannot 解决了吗?
Fluxible createStore module not found/cannot be resolved?
我在尝试创建商店时遇到 fluxible 错误,特别是 UserStore:
错误:找不到模块 'fluxible-app/utils/createStore'
我该如何解决这个问题?
我正在使用的project/code如下:
您似乎同时安装了 fluxible-app
和 fluxible
。 fluxible-app
是 fluxible
的前身,不再需要。
您可以通过 require('fluxible/addons/createStore')
而不是从 fluxible-app 获取 createStore
。
我在尝试创建商店时遇到 fluxible 错误,特别是 UserStore:
错误:找不到模块 'fluxible-app/utils/createStore'
我该如何解决这个问题?
我正在使用的project/code如下:
您似乎同时安装了 fluxible-app
和 fluxible
。 fluxible-app
是 fluxible
的前身,不再需要。
您可以通过 require('fluxible/addons/createStore')
而不是从 fluxible-app 获取 createStore
。