为了账号安全,请及时绑定邮箱和手机立即绑定

为什么在Info.Vue里面使用store.state.count视图不会自动更新呢

<template>
  <div>
    hello info
    <div>{{count}}</div>
    <button type="button" @click="add()">添加</button>
  </div>
</template>

<script>
import store from '@/store';

export default {
  name: 'Info',
  store,
  data() {
    return {
      count: store.state.count,
    };
  },
  methods: {
    add() {
      console.log('add Event');
      store.commit('increase');
    },
  },
};
</script>


正在回答

1 回答

computed

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么在Info.Vue里面使用store.state.count视图不会自动更新呢

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信