Skip to content
  • This project
    • Loading...
  • Sign in

dev / pingan-life-index-pro

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • pingan-life-index-pro
  • src
  • store
  • mutations.js
  • simon's avatar
    默认提交 · ddd34de6
    ddd34de6
    simon committed 2019-10-28 23:55:02 +0800
mutations.js 199 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
export function INCREMENT(state) {
	state.counter++
}

export function IS_MOBILE(state, bool) {
	state.isMobile = bool
}

export function IS_SMALL_SCREEN(state, bool) {
	state.isSmallScreen = bool
}