获取vuex中的数据
这里总结了几个获取vuex中数据的方法,如下代码
store下的index.js存储vuex数据
import Vue from "vue"; import Vuex from "vuex"; Vue.use(Vuex); const vuexLocal = new VuexPersistence({ storage: window.localStorage, }); export default new Vuex.Store({ state: { count:20 }, plugins: [vuexLocal.plugin], });
在vue中获取count数据
1 import {mapState } from "vuex"; 2 export default { 3 methods:{ 4 submit2(){ 5 console.log(this.$store.state.count,"===");//方法1 6 console.log(this.count,"count") 7 } 8 }, 9 computed: { 10 ...mapState({count:'count'}),//方法2 11 }, 12 computed: mapState({ 13 count: 'count', //方法3 14 count: (Store) => Store.count, // 方法4 15 count: function (Store) { // 方法5 16 return '123:' + Store.count 17 }, 18 }), 19 }
五种方法都可以获取vuex中的数据,其中两个computed注掉一个可以测试另一个,这里全部列了出来,方法2使用了...扩展运算符的方式。
如果还有其他方法可以评论提出,相互探讨