问答详情
源自:3-5 vuex介绍

为什么在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>


提问者:坏骇芓 2019-09-16 15:59

个回答

  • 等待彼_岸
    2019-09-16 17:16:35
    已采纳

    computed