아직 vuex를 이해하지 못해요store 和 $store 的区别,也不知道什么时候前面应该加this, 알려주세요. —— 미리 감사드립니다
store
$store
this
$store 是挂载在 Vue 实例上的(即Vue.prototype),而组件也其实是一个Vue实例,在组件中可使用 this 访问原型上的属性,template 拥有组件实例的上下文,可直接通过 {{ $store.state.userName }} 访问,等价于 script 中的 this.$store.state.userName。至于 {{ store.state.userName }},script 中的 data 需声明过 store 접속만 가능합니다.
{{ $store.state.userName }}
this.$store.state.userName
{{ store.state.userName }}
data
$store
是挂载在 Vue 实例上的(即Vue.prototype),而组件也其实是一个Vue实例,在组件中可使用this
访问原型上的属性,template 拥有组件实例的上下文,可直接通过{{ $store.state.userName }}
访问,等价于 script 中的this.$store.state.userName
。至于
{{ store.state.userName }}
,script 中的data
需声明过store
접속만 가능합니다.