这里写自定义目录标题

   <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>

1、$store 是挂载在 Vue 实例上的(即Vue.prototype),而组件也其实是一个Vue实例(所有组件都是实例,每个组件都是一个vue实例,所有的 Vue 组件都是 Vue 实例:一个 Vue 应用由一个通过 new Vue 创建的根 Vue 实例,以及可选的嵌套的、可复用的组件树组成,也就是说:组件放到根组件中使用)在组件中可使用 this 访问原型上的属性,template 拥有组件实例的上下文,可直接通过 {{ KaTeX parse error: Expected 'EOF', got '}' at position 22: …state.userName }̲} 访问,等价于 script…store.state.userName。
2、 s t o r e 是 挂 载 到 v u e 上 , 为 v u e 的 根 实 例 ; s t o r e 引 入 后 被 注 入 到 v u e 上 , 成 为 v u e 的 原 型 属 性 , 所 以 通 过 store是挂载到vue上,为vue的根实例;store引入后被注入到vue上,成为vue的原型属性,所以通过 storevuevuestorevuevuestore.state和this.$store.state可以访问。

Logo

前往低代码交流专区

更多推荐