GITLAB

sz-studygroup-fresh / xinchangpsychologycareer

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • xinchangpsychologycareer
  • src
  • store
  • index.js
  • 493fa9ed   feat:转移 Browse Code »
    夏洋涛
    2025-11-12 17:30:17 +0800  
index.js 207 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import { createStore } from 'vuex'

export default createStore({
  state: {
    userInfo: ''
  },
  mutations: {
    setUserInfo (state, value) {
      state.userInfo = value
    }
  },
  actions: {

  }

})