Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

马贞晓 / templateVUE

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • templateVUE
  • src
  • vuex
  • AffixBox.js
  • 马贞晓's avatar
    基础搭建 · b9d26ef2
    马贞晓 committed Nov 10, 2019
    b9d26ef2
AffixBox.js 271 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
export default {
   namespaced:true,
   state: {
      current:null
   },
   getters:{

   },
   mutations:{
     MSetCurrent:(state,value)=>{
        state.current = value

      }

   },
   actions:{
     ASetCurrent({dispatch,commit,state,computed}){


      }
   }
}