Open liuwuhaoo opened 5 years ago
bug描述 快应用在 app.cml 中更新 store.state 在其他组件内不生效
复现bug的步骤
beforeMount() { console.log(store.state.index.name) // 李四 store.commit('INDEX_CHANGE_NAME', 'cml') console.log(store.state.index.name) // cml }
import store from '../../store/index' ... computed = { name() { return store.state.index.name } } ... mounted() { console.log(this.name) }
会看到这里的 name 仍然是李四
export default function createStore(...args) { console.log(111, 'createStore') return new Store(...args) }
问题截图
编译环境信息
运行环境信息
快应用对于store的实现未到100%,我们还在继续完善中,敬请期待
bug描述 快应用在 app.cml 中更新 store.state 在其他组件内不生效
复现bug的步骤
会看到这里的 name 仍然是李四
问题截图
编译环境信息
运行环境信息