apache / incubator-weex

Apache Weex (Incubating)
https://weex.apache.org
Apache License 2.0
13.75k stars 1.82k forks source link

[Android] vuex cannot run in weex? #3217

Open punkisnotdead3 opened 4 years ago

punkisnotdead3 commented 4 years ago

when i use vuex in weex, i find bug:

1. store.commit('changeDialogA', true); i am sure store.state.dialogA is aleady true

  1. but computed can not get the store value changed:

    computed: { getDialogAStatus() { console.log(adadadad store.state.dialogA ${store.state.dialogA}); return store.state.dialogA; }, },

    means when store.state.dialogA changed computed can not get notify