您好,欢迎光临本网站![请登录][注册会员]  
文件名称: 解决Vue 给mapState中定义的属性赋值报错的问题
  所属分类: 其它
  开发工具:
  文件大小: 32kb
  下载次数: 0
  上传时间: 2020-11-20
  提 供 者: weixin_********
 详细说明:1. 实践环境 Vue 2.9.6 2. 问题描述 [removed] import { mapState } from 'vuex'; export default { name: "displayCount", computed: { ...mapState({ ...略 count: state => state.a.count }) }, methods: { increaseCount () { this.count = this.count + 1 } } }; [removed]