首页 > 软件网络

获取 vuex state 中的值一定要使用 computed 而不能使用 data 吗?

时间:2017-06-17  来源:  作者:

获取vuex state 中的值一定要使用 computed 而不能使用 data 吗?

获取vuex state 中的值一定要使用 computed 而不能使用 data 吗?vue...data是有缓存的,一旦Vuex中值改变了,没法做到响应。而放在computed中,虽然也有缓存...

获取vuex state 中的值一定要使用 computed 而不能使用 data 吗?

data(){ return { topicList: this.$store.state.topicList } }, 会导致 topicList 不会因 Vuex 中管理的 state.topicList 的修改而变化。 而: computed:...

获取vuex state 中的值一定要使用 computed 而不能使用 data 吗?

data(){ return { topicList: this.$store.state.topicList } }, 会导致 topicList 不会因 Vuex 中管理的 state.topicList 的修改而变化。 而: computed:...

...在组件中state数据的映射 为什么在computed里 而不能在data里?...

2017年3月24日 - 当前位置:首页 >> 编程问答 >> Web开发 >> (vue.js)使用vuex,在组件中state数据的映射 为什么在computed里 而不能在data里?...

获取vuex state 中的值一定要使用 computed 而不能使用 data 吗?

获取vuex state 中的值一定要使用 computed 而不能使用 data 吗?vue...data是有缓存的,一旦Vuex中值改变了,没法做到响应。而放在computed中,虽然也有缓存...

获取vuex state 中的值一定要使用 computed 而不能使用 data 吗?

data(){ return { topicList: this.$store.state.topicList } }, 会导致 topicList 不会因 Vuex 中管理的 state.topicList 的修改而变化。 而: computed:...

使用vuex,在组件中state数据的映射 为什么在computed里 而不能在...

在vuex的官方文档中获取state中的数据要使用后面的那种写法,我想知道为什么?在这个...data是有缓存的,一旦Vuex中值改变了,没法做到响应。而放在computed中,虽然也有...

使用vuex,在组件中state数据的映射 为什么在computed里 而不能在...

在vuex的官方文档中获取state中的数据要使用后面的那种写法,我想知道为什么?在这个...data是有缓存的,一旦Vuex中值改变了,没法做到响应。而放在computed中,虽然也有...
来顶一下
返回首页
返回首页
栏目更新
栏目热门