text Vuex助手
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Vuex助手相关的知识,希望对你有一定的参考价值。
<script>
import { mapGetters, mapState, mapMutations } from 'vuex'
export default {
computed: {
// mix this into the outer object with the object spread operator
...mapState([
'currentPage'
]),
// mix the getters into computed with object spread operator
...mapGetters([
'pageCount'
]),
},
methods: {
...mapMutations([
'increment', // map `this.increment()` to `this.$store.commit('increment')`
// `mapMutations` also supports payloads:
'incrementBy' // map `this.incrementBy(amount)` to `this.$store.commit('incrementBy', amount)`
])
}
}
</script>
以上是关于text Vuex助手的主要内容,如果未能解决你的问题,请参考以下文章
vuex中助手函数的几种使用技巧总结
vuex中助手函数的几种使用技巧总结
Vuex 中的单元测试抛出 AssertionError 等于 Object (type, text)
text Vuex概述
text Vuex笔记
text Vuex组件启动器