<router-link to="/login">{{ $store.state.userName }}</router-link>
<router-link to="/login">{{ store.state.userName }}</router-link>
<router-link to="/login">{{ this.store.state.userName }}</router-link>
<router-link to="/login">{{ this.$store.state.userName }}</router-link>
Ich verstehe Vuex immer noch nicht store
和 $store
的区别,也不知道什么时候前面应该加this
, bitte lassen Sie es mich wissen.
—— Danke im Voraus
$store
是挂载在 Vue 实例上的(即Vue.prototype),而组件也其实是一个Vue实例,在组件中可使用this
访问原型上的属性,template 拥有组件实例的上下文,可直接通过{{ $store.state.userName }}
访问,等价于 script 中的this.$store.state.userName
。至于
{{ store.state.userName }}
,script 中的data
需声明过store
才可访问。