vuex 中store注入到根组件中,在子组件中访问不到?

我在根组件中注入了store,然后在子组件中通过this.$store来访问store中的数据,然后我发现组件实例上根本不存在$store的属性,我在github上看vuex的demo,发现并没有区别。求助各位大神看看这到底是什么情况导致的~

main.js
import store from './store/store.js';
new Vue({  
  el:"#app",  
    router:router,
    store,   //这里已经注入到根组件中了啊?
    render:h=>h(AppComponent)
})

https://img3.mukewang.com/5b94efd20001f81e02170264.jpg

https://img4.mukewang.com/5b94efdc00017ac503510589.jpg

缥缈止盈
浏览 3340回答 2
2回答

天涯尽头无女友

import Vuex from "vuex"Vue.use(Vuex); //加上这个

叮当猫咪

正确的导入方式应该这样import Vue from 'vue'; import Vuex from 'vuex';
打开App,查看更多内容
随时随地看视频慕课网APP