xunleif2e / vuex-connector

基于 Vue 生态实现的 Vuex store connector,借鉴 React 容器组件(Smart/Container Components)和展示组件(Dumb/Presentational Components)的模式,demo地址:
https://xunleif2e.github.io/vue-vuex-container-component/dist/
MIT License
62 stars 4 forks source link

vue开发者工具不同步的问题 #2

Open GarrenZhang opened 5 years ago

GarrenZhang commented 5 years ago

这种方式 似乎无法与 vue 的开发者工具同步?

binggg commented 5 years ago

具体不同步指的是?

GarrenZhang commented 5 years ago

嗯 是这样的 在不用vuex-connector情况 下组件内部通过 this.$store 对store 数据进行更改 开发者工具是可以看到数据变化的 但是用 vuex-connector 的情况下 通过 mapDispatchToProprs 透传一个 action 组件 通过 props 接收 这个 函数 然后再组件里调用 发现chrome vue 开发者工具里显示相关 store 的状态 还是 初始值, 但实际值已经变了 所以来确定一下是否值是我自己遇到的情况 当然 你们开发的这个方式我很喜欢

binggg commented 5 years ago

谢谢反馈,我们一起来定位一下