在一个组件中:export default{//错误写法 data(){ return { topicList: this.$store.state.topicList } },//正确写法 computed:{ topicList(){ return this.$store.state.topicList } }}在vuex的官方文档中获取state中的数据要使用后面的那种写法,我想知道为什么?在这个组件中topicList没有做任何计算,为什么要在computed中获取?
添加回答
举报
0/150
提交
取消