码迷,mamicode.com
首页 > 其他好文 > 详细

手写vuex的mapGetters

时间:2020-06-14 13:11:47      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:reac   for   his   dispatch   getters   compute   foreach   exp   default   

<script>
  import { mapGetters } from ‘vuex‘

  const getters = {
    a: () => 1,
    b: () => 2
  }
  function fn (keys) {
    const data = {}
    keys.forEach(key => {
      // if (getters.hasOwnProperty(key)) {
      if (Object.prototype.hasOwnProperty.call(getters, key)) {
        data[key] = getters[key]
      }
    })
    return data
  }
  export default {
    computed: {
      ...mapGetters([‘test‘]),
      ...fn([‘a‘, ‘b‘, ‘c‘])
    },
    mounted () {
      this.$store.dispatch(‘setTest‘, 9).then(() => {
        console.log(this.test)
        console.log(this.a, this.b, this.c)
      })
    }
  }
</script>

 

手写vuex的mapGetters

标签:reac   for   his   dispatch   getters   compute   foreach   exp   default   

原文地址:https://www.cnblogs.com/zhuxingqing/p/13124309.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!