响应式
来源:5-1 播放器基础样式及歌曲播放功能开发
慕工程7290828
2021-07-20
为了让fullScreen成为响应式的
为什么用computed(()=>store.state.fullScreen)而不用ref(store.state.fullScreen)
写回答
1回答
-
ustbhuangyi
2021-07-21
fullScreen 是定义在 state 中的,本身就已经是响应式的了,在 Composition API 中就应该用计算属性获取它,这也是官方的文档推荐的方式,参考:https://next.vuex.vuejs.org/guide/composition-api.html#accessing-state-and-getters
00
相似问题