仿照Vuex中的mapGetters

首先为什么这样用...mapgetters

mounted(){
this.init()
},
methods: {

fn () {

return {

a: 1, b: 2

}

},

init () {

console.log({

...this.fn(),

c: 3,

d: 4

})

}

}

仿照Vuex中的mapGetters

仿照Vuex中的mapGetters_第1张图片

你可能感兴趣的:(vuex)