weexteam / article

This repos is a third party collection, and is not developed nor maintained by Apache Weex.
1.22k stars 141 forks source link

VUEX 在 web上的play ground 能用,在原生机器就跑不起来 #207

Open fdh19979 opened 6 years ago

fdh19979 commented 6 years ago

如果使用this.$store.state的方式,网页上能显示,原生报错 this.$store无法模拟

如果使用 import store from ,再使用store.state,原生也能显示数据,但是使用store.commit时就没有反应了

fdh19979 commented 6 years ago

找了一个解决方法 在store中 import Vue from 'vue' import Vuex from 'vuex'; Vue.use(Vuex);

如果import Vue,那么就web正常,原生报错 如果不 import,那么就web报错,原生正常

具体原因,分析不出

you85630 commented 6 years ago

我也遇到了相同的问题,求解决方法