若依框架将向Vuex中存储数据

若依框架将向Vuex中存储数据

1、创建文件

在store -> modules 中创建文件

const state = {
  accessIdToken: ''
}

const mutations = {
  setToken: (state,token) => {
    state.accessIdToken = token;
  },
}

export default {
  namespaced:true,
  state,
  mutations,
}

2、在index文件中导入

import token from './modules/token'

const store = new Vuex.Store({
  modules: {
    token
  },
})

3、存取数据

//存数据
this.$store.commit('token/setToken',this.queryMskParams.token)

//取数据
this.$store.state.token.accessIdToken
posted @ 2024-06-06 15:39  戒爱学Java  阅读(61)  评论(0编辑  收藏  举报