vuex存值与取值的实例

今天小编大家分享一篇vuex存值与取值的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

组件内取值

computed: { value() { return this.$store.state.userData.xxx; } },

组件内存值

methods: { fn() { this.$store.commit('setValue',xxx) } }

store的matution.js中

setValue(state,xxx){ state.userData.xxx= xxx; },

store的index.js中

const state = { userData: { "xxx":{} } }

以上这篇vuex存值与取值的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/f7a3ef26567c89e2c5515fc132c02c61.html