You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 lines
1.1 KiB

const getters = {
sidebar: state => state.app.sidebar,
language: state => state.app.language,
visitedViews: state => state.tagsView.visitedViews,
cachedViews: state => state.tagsView.cachedViews,
token: state => state.user.token,
userInfo: state => state.user.userInfo,
introduction: state => state.user.introduction,
status: state => state.user.status,
roles: state => state.user.roles,
myDepts: state => state.user.myDepts,
myShops: state => state.user.myShops,
myLocations: state => state.user.myLocations,
myBranchs: state => state.user.myBranchs,
myMenus: state => state.user.myMenus,
myPosts: state => state.user.myPosts,
setting: state => state.user.setting,
permission_routers: state => state.permission.routers,
addRouters: state => state.permission.addRouters,
errorLogs: state => state.errorLog.logs,
added: state => state.permission.added,
isLoadOk:state=>state.user.isLoadOk,
noticeMsg:state=>state.noticeMsg.noticeMsg,
projectInfo:state=>state.xm.projectInfo,
xmProduct:state=>state.xm.xmProduct,
xmIteration:state=>state.xm.xmIteration,
testCasedb:state=>state.xm.testCasedb,
}
export default getters