Vuex: Access State From Another Module

后端 未结 6 784
走了就别回头了
走了就别回头了 2021-01-30 08:12

I want to access state.session in instance.js from records_view.js. How is this accomplished?

store/modules/instance.js

6条回答
  •  花落未央
    2021-01-30 08:22

    from an action :

    'contacts:update' ({ commit, rootState }) {
        console.log('rootState', rootState.users.form)
        ......
    
      },
    

提交回复
热议问题